fleshed out install script even further, adding ability to choose partition sizes and desktop/laptop configuration separately. Also re-enabled sddm

This commit is contained in:
pagedmov
2024-10-18 05:16:39 -04:00
parent 2a26b124ff
commit ca3c8a9b2e
6 changed files with 217 additions and 136 deletions

View File

@@ -15,7 +15,7 @@
)
];
services.displayManager.sddm = {
enable = false;
enable = true;
wayland.enable = true;
theme = "catppuccin-mocha";
package = pkgs.kdePackages.sddm;

View File

@@ -41,10 +41,10 @@ in {
users = {
groups.persist = {};
users = {
root.hashedPassword = "$y$j9T$/eZO.0cE2EcsF4od78laE/$A3kqgNhr6LkUZHI/0MXAhk.SSKk7QsCIwH/l6xeryy8";
root.initialPassword = "1234";
${username} = {
isNormalUser = true;
initialPassword = "1111";
initialPassword = "1234";
shell = pkgs.zsh;
extraGroups = ["wheel" "persist" "libvirtd"];
};