summaryrefslogtreecommitdiff
path: root/hosts/herra/configuration.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-06-28 13:11:32 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-06-28 13:11:32 +0200
commitd30e60036816173d01ca48a0f76dbcf78352a01f (patch)
tree1ab5515c7d5f3ed0892ea982d5b11a409c6db1f8 /hosts/herra/configuration.nix
parent5fcc532aa89611efa227dc039786b3dc6a26711a (diff)
Moved hosts to be a top level directory instead of under modules
Diffstat (limited to 'hosts/herra/configuration.nix')
-rw-r--r--hosts/herra/configuration.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/hosts/herra/configuration.nix b/hosts/herra/configuration.nix
new file mode 100644
index 0000000..a9b1912
--- /dev/null
+++ b/hosts/herra/configuration.nix
@@ -0,0 +1,21 @@
+{
+ self,
+ inputs,
+ ...
+}: {
+ flake.nixosModules.herraConfiguration = {
+ pkgs,
+ lib,
+ ...
+ }: {
+ imports = [
+ self.nixosModules.herraHardware
+ inputs.home-manager.nixosModules.home-manager
+ self.nixosModules.system
+ self.nixosModules.ngeNiri # NeonGenesisEvangelion rice of niri
+ self.nixosModules.browser # Configured browser
+ ];
+
+ # ...
+ };
+}