Fixed Hyprland config errors for installation

This commit is contained in:
2025-11-19 20:52:12 +01:00
parent 61adc10c49
commit 72acec33da
8 changed files with 38 additions and 48 deletions

View File

@@ -7,12 +7,16 @@
./modules/hyprland.nix
];
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Bootloader - BIOS/Legacy (for Proxmox with legacy BIOS)
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
# If you're using UEFI instead, comment out above and use:
# boot.loader.systemd-boot.enable = true;
# boot.loader.efi.canTouchEfiVariables = true;
# Networking
networking.hostName = "myhost"; # Change this to your hostname
networking.hostName = "cribnix"; # Change this to your hostname
networking.networkmanager.enable = true;
# Time zone
@@ -38,7 +42,7 @@
# User account
users.users.crib = {
isNormalUser = true;
description = "Your Name";
description = "crib";
extraGroups = [ "networkmanager" "wheel" "video" "audio" ];
shell = pkgs.zsh;
};