My dotfiles (written in Nix, btw!) ❄

idk

+15 -3
+2
system/configuration.nix
··· 12 12 ./adb.nix 13 13 ./bluetooth.nix 14 14 ./bootloader.nix 15 + ./cloudflare-zero-trust.nix 15 16 ./docker.nix 16 17 ./flatpak.nix 17 18 ./fonts.nix ··· 21 22 ./networking.nix 22 23 ./nix.nix 23 24 ./postgresql.nix 25 + ./qemu.nix 24 26 ./sound.nix 25 27 ./swap.nix 26 28 ./user.nix
+8 -3
system/flatpak.nix
··· 8 8 "com.usebottles.bottles" 9 9 ]; 10 10 overrides = { 11 - "org.vinegarhq.Sober".Environment = { 12 - # do not touch, makes sober run on the iGPU and not crash lol 13 - VK_DRIVER_FILES = "/usr/lib/x86_64-linux-gnu/GL/vulkan/icd.d/intel_icd.x86_64.json"; 11 + "org.vinegarhq.Sober" = { 12 + Context = { 13 + filesystems = ["xdg-run/discord-ipc-0" "xdg-run/app/com.discordapp.Discord:create"]; 14 + }; 15 + Environment = { 16 + # do not touch, makes sober run on the iGPU and not crash lol 17 + VK_DRIVER_FILES = "/usr/lib/x86_64-linux-gnu/GL/vulkan/icd.d/intel_icd.x86_64.json"; 18 + }; 14 19 }; 15 20 "com.usebottles.bottles".Context.filesystems = ["home"]; 16 21 };
+5
system/qemu.nix
··· 1 + {pkgs, ...}: { 2 + environment.systemPackages = [ 3 + pkgs.qemu 4 + ]; 5 + }