Add krita and misc packages, add GTK theme
This commit is contained in:
parent
ec6de6168c
commit
70ff766580
4 changed files with 40 additions and 1 deletions
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue