aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix58
1 files changed, 29 insertions, 29 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";