diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 5 insertions, 9 deletions
@@ -3,8 +3,6 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05"; - chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; home-manager = { url = "github:nix-community/home-manager/master"; @@ -31,11 +29,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - awww = { - url = "git+https://codeberg.org/LGFae/awww"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - satty = { url = "github:gabm/Satty"; inputs.nixpkgs.follows = "nixpkgs"; @@ -62,7 +55,7 @@ }; }; - outputs = inputs @ { nixpkgs, ... }: + outputs = inputs @ { self, nixpkgs, ... }: let username = "adam"; mkHost = { hostname, path }: @@ -70,7 +63,6 @@ specialArgs = { inherit inputs username; }; modules = [ path - inputs.chaotic.nixosModules.default { networking.hostName = hostname; } ]; }; @@ -84,6 +76,10 @@ hostname = "laptop"; path = ./hosts/laptop/configuration.nix; }; + thinkpad = mkHost { + hostname = "thinkpad"; + path = ./hosts/thinkpad/configuration.nix; + }; }; }; } |
