diff options
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/gaming.nix | 2 | ||||
| -rw-r--r-- | nix/programs/sway.nix | 2 | ||||
| -rw-r--r-- | nix/scripts.nix | 1 | ||||
| -rw-r--r-- | nix/user.nix | 4 | ||||
| -rw-r--r-- | nix/virtualisation.nix | 2 |
5 files changed, 8 insertions, 3 deletions
diff --git a/nix/gaming.nix b/nix/gaming.nix index b08c79c..170b565 100644 --- a/nix/gaming.nix +++ b/nix/gaming.nix @@ -7,7 +7,7 @@ in { }; environment.systemPackages = with pkgs; [ mangohud - #umu + umu protontricks lutris #legendary-gl diff --git a/nix/programs/sway.nix b/nix/programs/sway.nix index 58db6d3..8b86d86 100644 --- a/nix/programs/sway.nix +++ b/nix/programs/sway.nix @@ -267,7 +267,7 @@ in { { command = "floating enable"; criteria.app_id = "mauri"; } { command = "inhibit_idle fullscreen"; criteria.title = "Parsec"; } { command = "inhibit_idle fullscreen"; criteria.class = "steam_app_.*"; } - { command = "inhibit_idle fullscreen; allow_tearing yes"; criteria.app_id = "gamescope"; } + { command = "inhibit_idle fullscreen; allow_tearing yes; floating enable"; criteria.app_id = "gamescope"; } { command = "inhibit_idle fullscreen; allow_tearing yes"; criteria.class = ".gamescope-wrapped"; } { command = "inhibit_idle fullscreen; allow_tearing yes"; criteria.app_id = "osu!"; } { command = "inhibit_idle fullscreen; allow_tearing yes"; criteria.class = "cs2"; } diff --git a/nix/scripts.nix b/nix/scripts.nix index 7b41137..c4146e1 100644 --- a/nix/scripts.nix +++ b/nix/scripts.nix @@ -19,6 +19,7 @@ let "shift-jis-zip" "moonrune-charset-utf8" "xbox360-ffmpeg-enc" + "looking-glass" "discord-wayland" ]; in { diff --git a/nix/user.nix b/nix/user.nix index 74e46c3..3891a24 100644 --- a/nix/user.nix +++ b/nix/user.nix @@ -60,6 +60,10 @@ in { sloccount (aspellWithDicts (dicts: with dicts; [ en en-computers en-science ])) rsync + (python3.withPackages (python-pkgs: [ + python-pkgs.requests + python-pkgs.beautifulsoup4 + ])) python3 htop neofetch diff --git a/nix/virtualisation.nix b/nix/virtualisation.nix index 7e253fe..bd542e9 100644 --- a/nix/virtualisation.nix +++ b/nix/virtualisation.nix @@ -1,5 +1,5 @@ { pkgs, ... }: { - users.users.andrew.extraGroups = [ "libvirtd" ]; + users.users.andrew.extraGroups = [ "libvirtd" "kvm" ]; virtualisation.libvirtd.enable = true; programs.virt-manager.enable = true; virtualisation.spiceUSBRedirection.enable = true; |