summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-12-21 15:32:01 +0000
committerLinnnus <[email protected]>2024-12-27 09:07:36 +0100
commit99f77809ea6f5d873c1b8cfd7b4816f877e29316 (patch)
tree659c28032b21e012973be4880e7c48291af32f83 /flake.nix
parent13774af03212266507af7f6b722978dd5db538e5 (diff)
Add new host omar
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 0a7d4bf..8fa8788 100644
--- a/flake.nix
+++ b/flake.nix
@@ -90,6 +90,17 @@
]
++ builtins.attrValues (import ./modules/nixos);
};
+ omar = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ modules =
+ [
+ {_module.args = args;}
+ home-manager.nixosModules.home-manager
+ agenix.nixosModules.default
+ ./hosts/omar/configuration.nix
+ ]
+ ++ builtins.attrValues (import ./modules/nixos);
+ };
};
# Formatter to be run when `nix fmt` is executed.