wow it actually is sorta workable now
This commit is contained in:
parent
15c4cae652
commit
8a58079706
15 changed files with 688 additions and 140 deletions
|
@ -10,13 +10,29 @@
|
|||
|
||||
system.nixos.tags = [ "Nya_Beginnings" ];
|
||||
|
||||
networking.hostName = "stitchynyan";
|
||||
networking.hostName = "lappy";
|
||||
networking.networkmanager.enable = true;
|
||||
time.timeZone = "America/Lost_Angeles";
|
||||
|
||||
boot.kernelParams = [
|
||||
"intel_pstate=no_hwp"
|
||||
"kernel.yama.ptrace_scope=0"
|
||||
"mem_sleep_default=deep"
|
||||
"module_blacklist=hid_sensor_hub"
|
||||
"intel_iommu=on"
|
||||
"iommu=pt"
|
||||
"i915.enable_guc=7"
|
||||
];
|
||||
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
driSupport = true;
|
||||
extraPackages = with pkgs; [
|
||||
intel-compute-runtime
|
||||
intel-media-driver
|
||||
];
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
# Read the Docs before Changing
|
||||
system.stateVersion = "23.05";
|
||||
}
|
||||
|
|
|
@ -16,6 +16,12 @@
|
|||
options = [ "subvol=@nix-root" ];
|
||||
};
|
||||
|
||||
fileSystems."/home" =
|
||||
{ device = "/dev/disk/by-uuid/d626409d-8166-45c2-a168-09dfab31b8a4";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@home" ];
|
||||
};
|
||||
|
||||
boot.initrd.luks.devices."luksdev".device = "/dev/disk/by-uuid/100a5596-671b-48ba-a1d1-0723559baf87";
|
||||
|
||||
swapDevices = [ ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue