summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/flake.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix
index 82530d5..f5e4b8e 100644
--- a/nixos/flake.nix
+++ b/nixos/flake.nix
@@ -3,29 +3,25 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
+
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
- helium = {
- url = "github:AlvaroParker/helium-nix";
- inputs.nixpkgs.follows = "nixpkgs";
- };
};
- outputs = { self, nixpkgs, home-manager, helium, ... }@inputs: {
+ outputs = { self, nixpkgs, home-manager, ... }@inputs: {
nixosConfigurations = {
cat = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
- specialArgs = { inherit inputs; };
modules = [
./configuration.nix
+
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.silly = import ./cat.nix;
- home-manager.extraSpecialArgs = { inherit inputs; };
}
];
};