avance
This commit is contained in:
@@ -3,12 +3,11 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
./users.nix
|
||||||
../../modules/system/boot.nix
|
../../modules/system/boot.nix
|
||||||
../../modules/system/locale.nix
|
../../modules/system/locale.nix
|
||||||
../../modules/system/network.nix
|
../../modules/system/network.nix
|
||||||
../../modules/system/users.nix
|
|
||||||
../../modules/system/packages.nix
|
../../modules/system/packages.nix
|
||||||
../../modules/system/nfs.nix
|
|
||||||
../../modules/desktop/hyprland.nix
|
../../modules/desktop/hyprland.nix
|
||||||
../../modules/desktop/audio.nix
|
../../modules/desktop/audio.nix
|
||||||
../../modules/desktop/fonts.nix
|
../../modules/desktop/fonts.nix
|
||||||
@@ -19,5 +18,5 @@
|
|||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "26.05";
|
||||||
}
|
}
|
||||||
|
|||||||
13
hosts/nixos-laptop/users.nix
Normal file
13
hosts/nixos-laptop/users.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -18,6 +18,8 @@
|
|||||||
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
|
extraPortals = with pkgs; [ xdg-desktop-portal-hyprland ];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = [ pkgs.elegant-sddm ];
|
||||||
|
|
||||||
services.displayManager.sddm = {
|
services.displayManager.sddm = {
|
||||||
enable = true;
|
enable = true;
|
||||||
wayland.enable = true;
|
wayland.enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user