diff options
| author | adikro <adikro@disroot.org> | 2026-01-11 20:53:40 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-01-11 20:53:40 +0100 |
| commit | 760a0edc2937fab375898bbd2f2a3011eb8c9756 (patch) | |
| tree | d5841eb7dc00ef23f6d6a9b52699e83709a5f3cb /flake.nix | |
| parent | 5d0f2554cf56459b0afd27d3ed437a7fa50602a9 (diff) | |
way too many changes to describe
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; + }; }; }; } |
