This commit is contained in:
2024-11-27 09:42:21 -06:00
parent d1f8eba241
commit 33fd7ddf72
6 changed files with 575 additions and 15 deletions

View File

@@ -10,6 +10,7 @@
zen-browser.url = "github:MarceColl/zen-browser-flake";
master.url = "github:NixOS/nixpkgs/master";
home-manager.url = "github:nix-community/home-manager";
hyprpanel.url = "github:Jas-SinghFSU/HyprPanel";
nixvim = {
url = "github:nix-community/nixvim";
inputs.nixpkgs.follows = "nixpkgs";
@@ -17,7 +18,7 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, nixos-cosmic, home-manager, zen-browser, master, nixvim }@inputs:
outputs = { self, nixpkgs, nixos-cosmic, home-manager, hyprpanel, zen-browser, master, nixvim }@inputs:
{
nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem {
@@ -30,6 +31,9 @@
substituters = [ "https://cosmic.cachix.org/" ];
trusted-public-keys = [ "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" ];
};
nixpkgs.overlays =
[ inputs.hyprpanel.overlay ];
_module.args = { inherit inputs; };
}
nixos-cosmic.nixosModules.default
./configuration.nix
@@ -45,3 +49,4 @@
};
};
}