This commit is contained in:
iFargle 2024-01-31 12:42:13 +09:00
parent c6f0dc8da0
commit 79d710985d
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@
repo ? "nixpkgs" repo ? "nixpkgs"
}: inputs.nixpkgs.lib.nixosSystem { }: inputs.nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu system theme; }; specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu system theme; };
pkgs = import inputs.${repo} { inherit system; config = {}; }; pkgs = import inputs.${repo} { inherit system; };
modules = [ modules = [
# Types are 'default', 'small', and 'minimal' # Types are 'default', 'small', and 'minimal'

View file

@ -14,7 +14,7 @@
]; ];
# steam , etc # steam , etc
nixpkgs.config.allowUnfree = true; pkgs.nixpkgs.config.allowUnfree = true;
powerManagement.enable = true; powerManagement.enable = true;
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" ];