diff options
| author | tom barrett <tom@tombarrett.xyz> | 2026-01-03 11:45:26 +0100 |
|---|---|---|
| committer | tom barrett <tom@tombarrett.xyz> | 2026-01-03 11:45:26 +0100 |
| commit | 37ecd053b384b711e68c3192b85bd00bb8661a0a (patch) | |
| tree | b271b7d6bc3fded37296df1fc3c95818e4e9d12f /flake.nix | |
| parent | 8578cee5c9349bdb2e562fce692321e27212c852 (diff) | |
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 46 |
1 files changed, 24 insertions, 22 deletions
@@ -8,27 +8,29 @@ inputs.nixpkgs.follows = "nixpkgs"; }; }; - outputs = { - agenix, - home-manager, - nixpkgs, - nixvim, - self, - }: { - nixosConfigurations.default = nixpkgs.lib.nixosSystem { - system = "x86_64-linux"; - modules = [ - ./configuration.nix - home-manager.nixosModules.home-manager - { - home-manager = { - extraSpecialArgs = {inherit agenix nixvim;}; - useGlobalPkgs = true; - users.tom = import ./home.nix; - useUserPackages = true; - }; - } - ]; + outputs = + { + agenix, + home-manager, + nixpkgs, + nixvim, + ... + }: + { + nixosConfigurations.default = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./configuration.nix + home-manager.nixosModules.home-manager + { + home-manager = { + extraSpecialArgs = { inherit agenix nixvim; }; + useGlobalPkgs = true; + users.tom = import ./home.nix; + useUserPackages = true; + }; + } + ]; + }; }; - }; } |
