This commit is contained in:
2026-06-19 06:01:38 +02:00
parent d5d15832f5
commit 25a00f435f
3 changed files with 17 additions and 3 deletions

View File

@@ -3,12 +3,11 @@
{
imports = [
./hardware-configuration.nix
./users.nix
../../modules/system/boot.nix
../../modules/system/locale.nix
../../modules/system/network.nix
../../modules/system/users.nix
../../modules/system/packages.nix
../../modules/system/nfs.nix
../../modules/desktop/hyprland.nix
../../modules/desktop/audio.nix
../../modules/desktop/fonts.nix
@@ -19,5 +18,5 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "25.11";
system.stateVersion = "26.05";
}

View File

@@ -0,0 +1,13 @@
{
users.users.waha = {
isNormalUser = true;
extraGroups = [ "wheel" ];
initialPassword = "zekzek";
};
users.users.benjamin = {
isNormalUser = true;
extraGroups = [ "networkmanager" "video" "render" "bluetooth" ];
initialPassword = "zekzek";
};
}

View File

@@ -18,6 +18,8 @@
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
};
environment.systemPackages = [ pkgs.elegant-sddm ];
services.displayManager.sddm = {
enable = true;
wayland.enable = true;