Switch all to plasma, remove home-manager and autologin for wayland support
This commit is contained in:
parent
da65f25865
commit
7c2093d173
|
@ -4,7 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./common.nix
|
./common.nix
|
||||||
./locales/en_GB.nix
|
./locales/en_GB.nix
|
||||||
./desktop/hyprland.nix
|
./desktop/plasma.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "H0615"; # Define your hostname.
|
networking.hostName = "H0615"; # Define your hostname.
|
||||||
|
@ -16,11 +16,4 @@
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable automatic login for the user.
|
|
||||||
services.xserver.displayManager.autoLogin.enable = true;
|
|
||||||
services.xserver.displayManager.autoLogin.user = "elitherl";
|
|
||||||
|
|
||||||
# Set up home manager for user
|
|
||||||
home-manager.users.elitherl = import ./home-manager/ukaea-elitherl.nix;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./common.nix
|
./common.nix
|
||||||
./locales/en_GB.nix
|
./locales/en_GB.nix
|
||||||
./desktop/xfce-bspwm.nix
|
./desktop/plasma.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.hostName = "J0162"; # Define your hostname.
|
networking.hostName = "J0162"; # Define your hostname.
|
||||||
|
@ -16,11 +16,4 @@
|
||||||
extraGroups = [ "networkmanager" "wheel" ];
|
extraGroups = [ "networkmanager" "wheel" ];
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
# Enable automatic login for the user.
|
|
||||||
services.xserver.displayManager.autoLogin.enable = true;
|
|
||||||
services.xserver.displayManager.autoLogin.user = "elitherl";
|
|
||||||
|
|
||||||
# Set up home manager for user
|
|
||||||
home-manager.users.elitherl = import ./home-manager/ukaea-elitherl.nix;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,11 +9,6 @@
|
||||||
|
|
||||||
networking.hostName = "Vanguard"; # Define your hostname.
|
networking.hostName = "Vanguard"; # Define your hostname.
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
clinfo
|
|
||||||
glxinfo
|
|
||||||
];
|
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users.users.xenia = {
|
users.users.xenia = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
@ -22,17 +17,6 @@
|
||||||
shell = pkgs.fish;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
# services.xserver.displayManager = {
|
|
||||||
# # Enable automatic login for the user.
|
|
||||||
# autoLogin = {
|
|
||||||
# enable = true;
|
|
||||||
# user = "xenia";
|
|
||||||
# };
|
|
||||||
# };
|
|
||||||
|
|
||||||
# Set up home manager for user
|
|
||||||
# home-manager.users.xenia = import ./home-manager/vanguard-xenia.nix;
|
|
||||||
|
|
||||||
# Extra hardware configuration
|
# Extra hardware configuration
|
||||||
# For Steam support
|
# For Steam support
|
||||||
hardware.opengl.driSupport32Bit = true;
|
hardware.opengl.driSupport32Bit = true;
|
|
@ -9,7 +9,11 @@
|
||||||
# Enable power-profiles
|
# Enable power-profiles
|
||||||
services.power-profiles-daemon.enable = true;
|
services.power-profiles-daemon.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [home-manager];
|
environment.systemPackages = with pkgs; [
|
||||||
|
home-manager
|
||||||
|
clinfo
|
||||||
|
glxinfo
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
programs.ssh.startAgent = true;
|
programs.ssh.startAgent = true;
|
||||||
|
|
Loading…
Reference in a new issue