🔧 (hosts) minor changes

This commit is contained in:
Laureηt 2024-03-31 16:30:01 +02:00
parent e6ac5843a3
commit dd9c053953
Signed by: Laurent
SSH key fingerprint: SHA256:pb5NrYg80So5z9hmqQFPmp//sgr+DFeJkKhmGyU2NLk
4 changed files with 7 additions and 6 deletions

View file

@ -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;
} }

View file

@ -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"

View file

@ -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;}
]; ];
}; };

View file

@ -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;
}; };
}; };
} }