diff --git a/flake.nix b/flake.nix index 7524df4..fa3ba6a 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,6 @@ nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; filaments.url = "github:suri-codes/filaments"; - # then reference inputs.filaments.packages.${system}.default home-manager = { url = "github:nix-community/home-manager"; @@ -68,7 +67,6 @@ ]; }; - # `sudo nixos-rebuild switch --flake .#Khaos` nixosConfigurations = { Khaos = nixpkgs.lib.nixosSystem { @@ -80,11 +78,6 @@ ./hosts/Khaos home-manager.nixosModules.home-manager { nixpkgs.overlays = overlays; } - # NOTE: temporary fix, need to wait for https://github.com/nix-darwin/nix-darwin/issues/1817 to be merged - { - # documentation.enable = false; - # system.tools.darwin-uninstaller.enable = false; - } { home-manager = { useGlobalPkgs = true; @@ -93,7 +86,6 @@ backupFileExtension = "backup"; documentation.enable = false; extraSpecialArgs = { - # <-- add this helix = helix; filaments = filaments; }; @@ -113,18 +105,12 @@ ./hosts/Styx home-manager.nixosModules.home-manager { nixpkgs.overlays = overlays; } - # NOTE: temporary fix, need to wait for https://github.com/nix-darwin/nix-darwin/issues/1817 to be merged - { - # documentation.enable = false; - # system.tools.darwin-uninstaller.enable = false; - } { home-manager = { useGlobalPkgs = true; useUserPackages = true; users.suri = import ./users/suri/Styx.nix; backupFileExtension = "backup"; - # documentation.enable = false; extraSpecialArgs = { inherit inputs; helix = helix; @@ -165,7 +151,6 @@ inherit inputs; helix = helix; filaments = filaments; - noctalia = noctalia; }; }; } diff --git a/hosts/Styx/configuration.nix b/hosts/Styx/configuration.nix index 5afc547..592391d 100644 --- a/hosts/Styx/configuration.nix +++ b/hosts/Styx/configuration.nix @@ -1,7 +1,3 @@ -# Edit this configuration file to define what should be installed on -# your system. Help is available in the configuration.nix(5) man page -# and in the NixOS manual (accessible by running ‘nixos-help’). - { inputs, pkgs, @@ -199,12 +195,6 @@ nix.settings = { experimental-features = "nix-command flakes"; - - # # noctalia binary cache: https://docs.noctalia.dev/noctalia/getting-started/nixos/#binary-cache - # extra-substituters = [ "https://noctalia.cachix.org" ]; - # extra-trusted-public-keys = [ - # "noctalia.cachix.org-1:pCOR47nnMEo5thcxNDtzWpOxNFQsBRglJzxWPp3dkU4=" - # ]; }; users.defaultUserShell = pkgs.fish;