From 67ec259d0607501ed4834d33b2bf72b7d85b6952 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Mon, 30 Mar 2026 21:22:14 +0200 Subject: Added nixowos to the configuration --- flake.nix | 11 +++++++++++ home/mun/default.nix | 2 ++ system/default.nix | 1 + 3 files changed, 14 insertions(+) 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"; } -- cgit v1.2.3