feat: upgrade to newer stateVersion, set timezone to Amsterdam

This commit is contained in:
Ahwx 2024-06-21 09:37:52 +02:00
parent 769b739363
commit 890319f222
3 changed files with 16 additions and 12 deletions

View file

@ -1,10 +1,12 @@
{ pkgs, ... }:
{ ... }:
{
programs.dconf.enable = true;
programs.zsh.enable = true;
programs.gnupg.agent = {
programs = {
dconf.enable = true;
zsh.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
# pinentryFlavor = "";
};
};
}

View file

@ -1,6 +1,8 @@
{ ... }:
{
security.rtkit.enable = true;
security.sudo.enable = true;
security.pam.services.swaylock = { };
security = {
rtkit.enable = true;
sudo.enable = true;
pam.services.swaylock = { };
};
}

View file

@ -26,8 +26,8 @@
git
];
time.timeZone = "Europe/Paris";
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";
nixpkgs.config.allowUnfree = true;
system.stateVersion = "23.05";
system.stateVersion = "24.05";
}