new installation

This commit is contained in:
Nico
2025-04-01 20:06:28 +02:00
parent f040a1bdb3
commit 25ab3a589b
3 changed files with 16 additions and 69 deletions

View File

@@ -18,57 +18,14 @@
};
# hyprland
# programs.hyprland = {
# enable = true;
# xwayland.enable = true;
# };
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
# Bootloader.
# boot.loader.grub.enable = true; boot.loader.grub.device = "/dev/sda"; boot.loader.grub.useOSProber = true;
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.forceImportRoot = false;
networking.hostId = "8425e349";
# Boot loader config for configuration.nix:
boot.loader.grub.useOSProber = true;
boot.loader.grub = {
enable = true;
zfsSupport = true;
efiSupport = true;
efiInstallAsRemovable = true;
mirroredBoots = [
{ devices = [ "nodev"]; path = "/boot"; }
];
};
fileSystems."/" =
{ device = "zpool/root";
fsType = "zfs";
};
fileSystems."/nix" =
{ device = "zpool/nix";
fsType = "zfs";
};
fileSystems."/home" =
{ device = "zpool/home";
fsType = "zfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/49CB-AECA";
fsType = "vfat";
};
fileSystems."/mnt/win" =
{
device = "/dev/disk/by-uuid/7420123C201205B0";
fsType = "ntfs";
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
swapDevices = [ ];
@@ -246,6 +203,6 @@ hardware.amdgpu.opencl.enable = true;
# recommended to leave this value at the release version of the first install of this system. Before
# changing this value read the documentation for this option (e.g. man configuration.nix or on
# https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment?
system.stateVersion = "24.11"; # Did you read the comment?
}