Add krita and misc packages, add GTK theme

This commit is contained in:
askiiart 2024-03-15 19:26:11 -05:00
parent ec6de6168c
commit 70ff766580
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
4 changed files with 40 additions and 1 deletions

View file

@ -10,6 +10,8 @@ let
-b 'Poweroff' 'systemctl poweroff' \
-b 'Reboot' 'systemctl reboot'
'';
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
# packages and other environment stuff
@ -233,4 +235,17 @@ in
serviceConfig.ExecStart = "/run/current-system/sw/bin/bash -c 'while true; do /run/current-system/sw/bin/evdev-joystick --e /dev/input/by-id/usb-ShanWan_Xbox360_For_Windows_10F36D6-event-joystick --minimum -32767 --maximum 0 --a 3; /run/current-system/sw/bin/evdev-joystick --e /dev/input/by-id/usb-ShanWan_Xbox360_For_Windows_10F36D6-event-joystick --minimum 0 --maximum 32767 --a 4; sleep 5; done'";
wantedBy = [ "multi-user.target" ];
};
# enable the nix command
nix.settings.experimental-features = [ "nix-command" ];
# optimize the nix store
#nix.optimise.automatic = true;
nix.settings.auto-optimise-store = true;
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 2d";
};
}