diff --git a/flake.nix b/flake.nix index 4d1b3ce..523be20 100644 --- a/flake.nix +++ b/flake.nix @@ -42,12 +42,14 @@ # laptop nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem { inherit system; + specialArgs = {inherit inputs;}; modules = [ ./hosts/JWST/configuration.nix home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.users."tacocat" = ./users/tacocat/home.nix; + home-manager.extraSpecialArgs = {inherit inputs;}; } ]; }; diff --git a/hosts/JWST/configuration.nix b/hosts/JWST/configuration.nix index 85ced02..cd097c8 100644 --- a/hosts/JWST/configuration.nix +++ b/hosts/JWST/configuration.nix @@ -10,12 +10,11 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix - ./secrets ]; boot.loader = { efi.canTouchEfiVariables = true; - efi.efiSysMountPoint = "/boot/efi"; + # efi.efiSysMountPoint = "/boot/efi"; grub = { efiSupport = true; configurationLimit = 10; @@ -49,6 +48,8 @@ keyMap = "us"; }; + time.timeZone = "America/New_York"; + # Enable CUPS to print documents. services.printing.enable = true; diff --git a/hosts/JWST/secrets/default.nix b/hosts/JWST/secrets/default.nix deleted file mode 100644 index 84c655b..0000000 Binary files a/hosts/JWST/secrets/default.nix and /dev/null differ