more added

This commit is contained in:
kenji
2025-12-22 09:38:38 -06:00
parent 420d4f173c
commit d7c275f6e9
3 changed files with 26 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{...}: {
imports = [
../../system/amd.nix
../../system/boot.nix
../../system/hardware.nix
../../system/home-manager.nix
../../system/services.nix
../../system/user.nix
../../system/version.nix
];
}
+3
View File
@@ -0,0 +1,3 @@
{pkgs, ...}: {
hardware.amdgpu.initrd.enable = true;
}
+12
View File
@@ -0,0 +1,12 @@
{pkgs, ...}: {
boot = {
loader = {
systemd-boot = {
enable = true;
};
};
initrd = {
systemd.enable = true;
};
};
}