Compare commits

..

3 Commits

Author SHA1 Message Date
John Lancaster 4cd6972302 added sudo and john nixos modules to p14s 2026-03-26 17:55:09 -05:00
John Lancaster 76be519c0f added graphics options to p14s hardware 2026-03-26 17:52:41 -05:00
John Lancaster c578bf00a1 formatting 2026-03-26 17:50:19 -05:00
3 changed files with 47 additions and 11 deletions
+8 -5
View File
@@ -10,10 +10,13 @@
modules = [
"${inputs.nixos-hardware}/lenovo/thinkpad/p14s"
"${inputs.nixos-hardware}/lenovo/thinkpad/p14s/amd/gen4"
self.modules.nixos.p14sConfiguration
self.modules.nixos.gnome
# self.modules.nixos.greetd
# self.modules.nixos.niri
];
] ++ (with self.modules.nixos; [
p14sConfiguration
sudo
gnome
john
# greetd
# niri
]);
};
}
+29 -6
View File
@@ -4,12 +4,25 @@
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
boot = {
loader = {
systemd-boot.enable = true;
canTouchEfiVariables = true;
};
initrd = {
availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ];
kernelModules = [ "amdgpu" ];
};
kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
};
# boot.loader.systemd-boot.enable = true;
# boot.loader.efi.canTouchEfiVariables = true;
# boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "usbhid" "sd_mod" ];
# boot.initrd.kernelModules = [ "amdgpu" ];
# boot.kernelModules = [ "kvm-amd" ];
# boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/fbc7d8bc-080b-4554-a2b2-5f92d059ce07";
@@ -35,5 +48,15 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.graphics = with pkgs; {
## amdvlk: an open-source Vulkan driver from AMD
extraPackages = [
amdvlk
rocmPackages.clr.icd
];
extraPackages32 = [ driversi686Linux.amdvlk ];
enable32Bit = true;
};
};
}
+10
View File
@@ -0,0 +1,10 @@
{ self, inputs, ... }: {
flake.modules.nixos.sudo = {
security.sudo-rs = {
enable = true;
execWheelOnly = false;
wheelNeedsPassword = false;
extraConfig = "Defaults timestamp_timeout=1440";
};
};
}