From 83fec3546514fc4f045908adc0581d5254a756d4 Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Mon, 30 Mar 2026 22:32:50 +0200 Subject: Commented out NixOwOS until fixed --- flake.nix | 58 ++++++++++++++++++++++++++-------------------------- home/mun/default.nix | 4 ++-- system/default.nix | 2 +- 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/flake.nix b/flake.nix index b5e64c9..f3d9519 100644 --- a/flake.nix +++ b/flake.nix @@ -12,13 +12,11 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - # NixOwOs theming - nixowos = { - url = "github:yunfachi/nixowos"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - }; - + # NixOwOs theming - disabled until fixed + # nixowos = { + # url = "github:TashaTheInnkeeper/nixowos"; + # inputs.nixpkgs.follows = "nixpkgs"; + # }; # Theming - centralized color management stylix = { @@ -40,7 +38,7 @@ self, nixpkgs, nixpkgs-unstable, - nixowos, + # nixowos, home-manager, stylix, fenix, @@ -69,31 +67,33 @@ useUserPackages = true; extraSpecialArgs = {inherit inputs;}; users.mun = import ./home/mun; - nixowos.homeModules.default + # sharedModules = [ + # nixowos.homeModules.default + # ]; }; }; # Helper to create a NixOS system - mkSystem = hostname: nixpkgs.lib.nixosSystem { - inherit system; - specialArgs = {inherit inputs;}; - modules = [ - # Apply overlays via nixpkgs module - { - nixpkgs = { - inherit overlays; - config.allowUnfree = true; - }; - } - ./hosts/${hostname}/configuration.nix - ./system - home-manager.nixosModules.home-manager - nixowos.nixosModules.default - stylix.nixosModules.stylix - homeManagerModule - ]; - }; - + mkSystem = hostname: + nixpkgs.lib.nixosSystem { + inherit system; + specialArgs = {inherit inputs;}; + modules = [ + # Apply overlays via nixpkgs module + { + nixpkgs = { + inherit overlays; + config.allowUnfree = true; + }; + } + ./hosts/${hostname}/configuration.nix + ./system + home-manager.nixosModules.home-manager + # nixowos.nixosModules.default + stylix.nixosModules.stylix + homeManagerModule + ]; + }; in { nixosConfigurations = { kronos = mkSystem "kronos"; diff --git a/home/mun/default.nix b/home/mun/default.nix index 7894051..8ac1a3a 100644 --- a/home/mun/default.nix +++ b/home/mun/default.nix @@ -6,6 +6,8 @@ ../rices/nord-blue ]; + # nixowos.enable = true; # disabled until fixed + home = { username = "mun"; homeDirectory = "/home/mun"; @@ -105,8 +107,6 @@ ])) ]; - nixowos.enable = true; - sessionVariables = { EDITOR = "nvim"; VISUAL = "nvim"; diff --git a/system/default.nix b/system/default.nix index ac010d3..ceb8a33 100644 --- a/system/default.nix +++ b/system/default.nix @@ -14,6 +14,6 @@ ./stylix.nix ]; - nixowos.enable = true; + # nixowos.enable = true; # disabled until fixed system.stateVersion = "25.11"; } -- cgit v1.2.3