this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

okay ig

+10 -5
+4
pkgs-set/overlays/steam.nix
··· 1 1 final: prev: { 2 2 steam = prev.steam.override { 3 3 extraLibraries = pkgs: with pkgs; [mimalloc pipewire vulkan-loader wayland wayland-protocols]; 4 + extraProfile = '' 5 + unset VK_ICD_FILENAMES 6 + export VK_ICD_FILENAMES="/run/opengl-driver/share/vulkan/icd.d:/run/opengl-driver-32/share/vulkan/icd.d" 7 + ''; 4 8 }; 5 9 }
+6 -5
users/patriot/default.nix
··· 13 13 pkgBin = tlib.pkgBin pkgs; 14 14 nixosConfig = globalAttrs.config; 15 15 in { 16 - imports = [inputs.hyprland.nixosModules.default]; 16 + imports = [ 17 + inputs.hyprland.nixosModules.default 18 + ]; 17 19 18 20 users.users.patriot = { 19 21 isNormalUser = true; ··· 28 30 hashedPassword = "$6$spzqhAyJfhHy$iHgLBlhjGn1l8PnbjJdWTn1GPvcjMqYNKUzdCe/7IrX6sHNgETSr/Nfpdmq9FCXLhrAfwHOd/q/8SvfeIeNX4/"; 29 31 }; 30 32 environment = { 33 + persistence.${config.system.persistDir}.directories = ["/home/patriot/.local/share/Steam"]; 31 34 systemPackages = [pkgs.qt5.qtwayland]; 32 35 shells = with pkgs; [bashInteractive zsh]; 33 36 }; ··· 41 44 # this is needed for impermanence 42 45 fuse.userAllowOther = true; 43 46 adb.enable = true; 44 - steam.enable = false; 47 + steam.enable = true; 45 48 kdeconnect.enable = true; 46 49 # gnome stuffs 47 50 seahorse.enable = true; ··· 94 97 builtins.map (n: "${prefix}/${n}") (l.flatten paths); 95 98 in { 96 99 directories = 97 - [ 100 + l.flatten [ 98 101 "Downloads" 99 102 "proj" 100 103 # "smos" 101 - # ".steam" 102 104 ".wine" 103 105 # ssh / gpg / keys 104 106 ".ssh" ··· 112 114 ++ mkPaths ".local/share" [ 113 115 "direnv" 114 116 "zsh" 115 - # "Steam" 116 117 "keyrings" 117 118 "lutris" 118 119 "PolyMC"