feat: add niri and dms theme modules

This commit is contained in:
2026-03-04 19:38:02 +01:00
parent 201d9c3397
commit 17c78add1a
4 changed files with 254 additions and 7 deletions
-7
View File
@@ -1,15 +1,12 @@
{
description = "Ayman's Home Manager configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, ... }:
let
mkHome = { system, modules }:
@@ -20,7 +17,6 @@
in
{
homeConfigurations = {
"ayman@archThinkpad" = mkHome {
system = "x86_64-linux";
modules = [
@@ -28,7 +24,6 @@
./home/profiles/notebook.nix
];
};
"ayman@desktop" = mkHome {
system = "x86_64-linux";
modules = [
@@ -36,7 +31,6 @@
./home/profiles/desktop.nix
];
};
"ayman@homelab-01" = mkHome {
system = "x86_64-linux";
modules = [
@@ -44,7 +38,6 @@
./home/profiles/server.nix
];
};
};
};
}