changed i3 stuff

This commit is contained in:
Charlie Root 2024-04-12 22:58:01 +02:00
commit e8fae4a2f4
8 changed files with 275 additions and 81 deletions

View file

@ -2,7 +2,23 @@
{
nixpkgs.config.allowUnfree = true;
time.timeZone = "Europe/Zurich";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "de";
# enable flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# reduce file size used & automatic garbage collector
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
options = "--delete-older-than 14d";
};
# required for nix-direnv to work and have environments not garbage collected
nix.extraOptions = ''
keep-outputs = true
keep-derivations = true
'';
security.sudo.package = pkgs.sudo.override { withInsults = true; };
security.polkit.enable = true;
programs.kdeconnect.enable = true;