aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-30 21:22:14 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-03-30 21:22:14 +0200
commit67ec259d0607501ed4834d33b2bf72b7d85b6952 (patch)
treea97925f2988d54791c20c645e8467da5b12d2183
parentf76993d1eba379a43d247d0ef41c8ef2cb7f1e24 (diff)
Added nixowos to the configuration
-rw-r--r--flake.nix11
-rw-r--r--home/mun/default.nix2
-rw-r--r--system/default.nix1
3 files changed, 14 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 7077d3b..b5e64c9 100644
--- a/flake.nix
+++ b/flake.nix
@@ -12,6 +12,14 @@
inputs.nixpkgs.follows = "nixpkgs";
};
+ # NixOwOs theming
+ nixowos = {
+ url = "github:yunfachi/nixowos";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+ };
+
+
# Theming - centralized color management
stylix = {
url = "github:danth/stylix/release-25.11";
@@ -32,6 +40,7 @@
self,
nixpkgs,
nixpkgs-unstable,
+ nixowos,
home-manager,
stylix,
fenix,
@@ -60,6 +69,7 @@
useUserPackages = true;
extraSpecialArgs = {inherit inputs;};
users.mun = import ./home/mun;
+ nixowos.homeModules.default
};
};
@@ -78,6 +88,7 @@
./hosts/${hostname}/configuration.nix
./system
home-manager.nixosModules.home-manager
+ nixowos.nixosModules.default
stylix.nixosModules.stylix
homeManagerModule
];
diff --git a/home/mun/default.nix b/home/mun/default.nix
index 9b0eeb5..7894051 100644
--- a/home/mun/default.nix
+++ b/home/mun/default.nix
@@ -105,6 +105,8 @@
]))
];
+ nixowos.enable = true;
+
sessionVariables = {
EDITOR = "nvim";
VISUAL = "nvim";
diff --git a/system/default.nix b/system/default.nix
index 638ae02..ac010d3 100644
--- a/system/default.nix
+++ b/system/default.nix
@@ -14,5 +14,6 @@
./stylix.nix
];
+ nixowos.enable = true;
system.stateVersion = "25.11";
}