summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-01-11 20:53:40 +0100
committeradikro <adikro@disroot.org>2026-01-11 20:53:40 +0100
commit760a0edc2937fab375898bbd2f2a3011eb8c9756 (patch)
treed5841eb7dc00ef23f6d6a9b52699e83709a5f3cb /flake.nix
parent5d0f2554cf56459b0afd27d3ed437a7fa50602a9 (diff)
way too many changes to describe
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix14
1 files changed, 5 insertions, 9 deletions
diff --git a/flake.nix b/flake.nix
index e49c997..1059a42 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
+ };
};
};
}