Compare commits

...

3 Commits

Author SHA1 Message Date
tux
c3adf234f7 feat: add distrobox to persist dir 2026-05-15 10:13:08 +05:30
tux
7f74855511 feat(desktop): enable thunar file manager and plugins 2026-05-15 10:12:07 +05:30
tux
383bc98052 feat(gaming): add proton-ge-bin to steam 2026-05-15 09:02:03 +05:30
4 changed files with 25 additions and 5 deletions

View File

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

View File

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

View File

@@ -0,0 +1,15 @@
{
flake.modules.nixos.desktop =
{ pkgs, ... }:
{
services.gvfs.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 =
{ pkgs, ... }:
{
programs.steam = {
enable = true;
protontricks.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
};
}