🔧 (hosts) minor changes
This commit is contained in:
parent
e6ac5843a3
commit
dd9c053953
|
@ -1,5 +1,6 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
|
./services
|
||||||
./system
|
./system
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -24,8 +25,6 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.zsh.enable = true;
|
|
||||||
|
|
||||||
# enable gnome virtual file system
|
# enable gnome virtual file system
|
||||||
services.gvfs.enable = true;
|
services.gvfs.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
users.laurent = {
|
users.laurent = {
|
||||||
directories = [
|
directories = [
|
||||||
"Documents"
|
"Documents"
|
||||||
".librewolf"
|
".mozilla"
|
||||||
".thunderbird"
|
".thunderbird"
|
||||||
".local/share/direnv"
|
".local/share/direnv"
|
||||||
".local/share/keyrings"
|
".local/share/keyrings"
|
||||||
|
|
|
@ -42,10 +42,13 @@ in {
|
||||||
modules = [
|
modules = [
|
||||||
./aurum
|
./aurum
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
inputs.disko.nixosModules.default
|
# inputs.disko.nixosModules.default
|
||||||
# inputs.lanzaboote.nixosModules.lanzaboote
|
# inputs.lanzaboote.nixosModules.lanzaboote
|
||||||
# inputs.impermanence.nixosModules.impermanence
|
# inputs.impermanence.nixosModules.impermanence
|
||||||
# inputs.nixos-hardware.nixosModules.dell-xps-13-something
|
# inputs.nixos-hardware.nixosModules.dell-xps-13-something
|
||||||
|
inputs.nixos-hardware.nixosModules.common-cpu-intel
|
||||||
|
inputs.nixos-hardware.nixosModules.common-pc-laptop
|
||||||
|
inputs.nixos-hardware.nixosModules.common-pc-laptop-ssd
|
||||||
{inherit home-manager;}
|
{inherit home-manager;}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{...}: {
|
||||||
# disable user creation/deletion
|
# disable user creation/deletion
|
||||||
users.mutableUsers = false;
|
users.mutableUsers = false;
|
||||||
|
|
||||||
|
@ -8,7 +8,6 @@
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
initialPassword = "laurent";
|
initialPassword = "laurent";
|
||||||
extraGroups = ["wheel" "video"];
|
extraGroups = ["wheel" "video"];
|
||||||
shell = pkgs.zsh;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue