feat: add niri and dms theme modules
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user