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
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;};
}
];
};

View file

@ -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;

Binary file not shown.