Compare commits

...

4 Commits

4 changed files with 28 additions and 5 deletions

View File

@@ -25,6 +25,7 @@
home = { home = {
directories = [ directories = [
"Distrobox"
".steam" ".steam"
".cache/awww" ".cache/awww"
".config/BraveSoftware" ".config/BraveSoftware"

View File

@@ -25,6 +25,7 @@
home = { home = {
directories = [ directories = [
"Distrobox"
".steam" ".steam"
".cache/awww" ".cache/awww"
".config/BraveSoftware" ".config/BraveSoftware"

View File

@@ -0,0 +1,18 @@
{
flake.modules.nixos.desktop =
{ pkgs, ... }:
{
services = {
gvfs.enable = true;
tumbler.enable = true;
};
programs.thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
thunar-volman
];
};
};
}

View File

@@ -1,8 +1,11 @@
{ {
flake.modules.nixos.gaming = { flake.modules.nixos.gaming =
programs.steam = { { pkgs, ... }:
enable = true; {
protontricks.enable = true; programs.steam = {
enable = true;
protontricks.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
}; };
};
} }