diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 21:22:14 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-30 21:22:14 +0200 |
| commit | 67ec259d0607501ed4834d33b2bf72b7d85b6952 (patch) | |
| tree | a97925f2988d54791c20c645e8467da5b12d2183 | |
| parent | f76993d1eba379a43d247d0ef41c8ef2cb7f1e24 (diff) | |
Added nixowos to the configuration
| -rw-r--r-- | flake.nix | 11 | ||||
| -rw-r--r-- | home/mun/default.nix | 2 | ||||
| -rw-r--r-- | system/default.nix | 1 |
3 files changed, 14 insertions, 0 deletions
@@ -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"; } |
