mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: upgrade to newer stateVersion, set timezone to Amsterdam
This commit is contained in:
parent
769b739363
commit
890319f222
3 changed files with 16 additions and 12 deletions
|
|
@ -1,10 +1,12 @@
|
||||||
{ pkgs, ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
programs.dconf.enable = true;
|
programs = {
|
||||||
programs.zsh.enable = true;
|
dconf.enable = true;
|
||||||
programs.gnupg.agent = {
|
zsh.enable = true;
|
||||||
enable = true;
|
gnupg.agent = {
|
||||||
enableSSHSupport = true;
|
enable = true;
|
||||||
# pinentryFlavor = "";
|
enableSSHSupport = true;
|
||||||
|
# pinentryFlavor = "";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
security.rtkit.enable = true;
|
security = {
|
||||||
security.sudo.enable = true;
|
rtkit.enable = true;
|
||||||
security.pam.services.swaylock = { };
|
sudo.enable = true;
|
||||||
|
pam.services.swaylock = { };
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,8 +26,8 @@
|
||||||
git
|
git
|
||||||
];
|
];
|
||||||
|
|
||||||
time.timeZone = "Europe/Paris";
|
time.timeZone = "Europe/Amsterdam";
|
||||||
i18n.defaultLocale = "en_US.UTF-8";
|
i18n.defaultLocale = "en_US.UTF-8";
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue