diff --git a/flake.lock b/flake.lock index c0fc7f1..84996b7 100644 --- a/flake.lock +++ b/flake.lock @@ -825,11 +825,11 @@ }, "nur": { "locked": { - "lastModified": 1728833943, - "narHash": "sha256-W5vzwrgfSSYw+WVOLhg+1xVFewN6NuKnUnNfNW7xC9c=", + "lastModified": 1728855676, + "narHash": "sha256-d3o+QZ/zRXl5bWdfa3wiM1nkAcs0Y4nHKU95wpR2WmM=", "owner": "nix-community", "repo": "NUR", - "rev": "72974c03c9952b3591688e64af12e19e3686a499", + "rev": "c85953d50bfafd5d7a67e31e1e47c19b961b7da0", "type": "github" }, "original": { diff --git a/modules/home/desktop.nix b/modules/home/desktop.nix index a240dcf..fbb4170 100644 --- a/modules/home/desktop.nix +++ b/modules/home/desktop.nix @@ -12,6 +12,9 @@ ++ [ (import ./programs/eza.nix) ] ++ [ (import ./programs/cava.nix) ] ++ [ (import ./programs/bat.nix) ] + ++ [ (import ./programs/fzf.nix) ] + ++ [ (import ./programs/password-store.nix) ] + ++ [ (import ./programs/autojump.nix) ] ++ [ (import ./environment/gtk.nix) ] ++ [ (import ./environment/spicetify.nix) ] ++ [ (import ./environment/starship.nix) ] diff --git a/modules/home/environment/desktop_userpkgs.nix b/modules/home/environment/desktop_userpkgs.nix index 361bfe6..1d31efd 100644 --- a/modules/home/environment/desktop_userpkgs.nix +++ b/modules/home/environment/desktop_userpkgs.nix @@ -13,6 +13,7 @@ in imagemagick yt-dlp vlc + lolcat speedtest-cli vesktop qbittorrent diff --git a/modules/sys/software/steam.nix b/modules/sys/software/steam.nix new file mode 100644 index 0000000..4c92277 --- /dev/null +++ b/modules/sys/software/steam.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: + +{ + programs.steam = { + enable = true; + extest.enable = true; + remotePlay.openFirewall = true; + + extraCompatPackages = with pkgs; [ + proton-ge-bin + ]; + }; +}