fixed JWST config

This commit is contained in:
Aria Nolan 2023-10-29 14:11:54 -04:00
parent 9feb184941
commit 0287577da1
3 changed files with 5 additions and 2 deletions

View file

@ -42,12 +42,14 @@
# laptop # laptop
nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem { nixosConfigurations."JWST" = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = {inherit inputs;};
modules = [ modules = [
./hosts/JWST/configuration.nix ./hosts/JWST/configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.users."tacocat" = ./users/tacocat/home.nix; home-manager.users."tacocat" = ./users/tacocat/home.nix;
home-manager.extraSpecialArgs = {inherit inputs;};
} }
]; ];
}; };

View file

@ -10,12 +10,11 @@
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./secrets
]; ];
boot.loader = { boot.loader = {
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
efi.efiSysMountPoint = "/boot/efi"; # efi.efiSysMountPoint = "/boot/efi";
grub = { grub = {
efiSupport = true; efiSupport = true;
configurationLimit = 10; configurationLimit = 10;
@ -49,6 +48,8 @@
keyMap = "us"; keyMap = "us";
}; };
time.timeZone = "America/New_York";
# Enable CUPS to print documents. # Enable CUPS to print documents.
services.printing.enable = true; services.printing.enable = true;

Binary file not shown.