try to reduce what's going on in the flake
This commit is contained in:
parent
1599875a5c
commit
7bb3b4b573
5 changed files with 61 additions and 132 deletions
27
flake.nix
27
flake.nix
|
@ -10,7 +10,10 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# hyprland = {
|
||||
# url = "github:hyprwm/Hyprland";
|
||||
# type = "git";
|
||||
# url = "https://github.com/hyprwm/Hyprland";
|
||||
# submodules = true;
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
# hyprland-plugins = {
|
||||
# url = "github:hyprwm/hyprland-plugins";
|
||||
|
@ -20,10 +23,10 @@
|
|||
url = "github:elkowar/eww";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
ags = {
|
||||
url = "github:Aylur/ags";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# ags = {
|
||||
# url = "github:Aylur/ags";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
emacs = {
|
||||
url = "github:nix-community/emacs-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -34,10 +37,10 @@
|
|||
simple-nixos-mailserver = {
|
||||
url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-22.11";
|
||||
};
|
||||
anyrun = {
|
||||
url = "github:Kirottu/anyrun";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
# anyrun = {
|
||||
# url = "github:Kirottu/anyrun";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
libre-presenter = {
|
||||
url = "gitlab:chriscochrun/lumina";
|
||||
};
|
||||
|
@ -54,12 +57,13 @@
|
|||
outputs = { nixpkgs,
|
||||
nixpkgs-stable,
|
||||
home-manager,
|
||||
# hyprland,
|
||||
nixos-hardware,
|
||||
emacs,
|
||||
nix-bitcoin,
|
||||
libre-presenter,
|
||||
eww,
|
||||
ags,
|
||||
# ags,
|
||||
rust-overlay, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
|
@ -90,6 +94,7 @@
|
|||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
# home-manager.extraSpecialArgs = { inherit ags; };
|
||||
home-manager.users.chris = import ./home/home.nix;
|
||||
}
|
||||
];
|
||||
|
@ -105,7 +110,7 @@
|
|||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.extraSpecialArgs = { inherit ags; };
|
||||
# home-manager.extraSpecialArgs = { inherit ags; };
|
||||
home-manager.users.chris = import ./home/home.nix;
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue