Adicionando o thunar e altedando coisas no cosmic

This commit is contained in:
2025-12-16 13:11:09 -03:00
parent 119cf0e391
commit 3905c854f7
7 changed files with 58 additions and 30 deletions
+7 -3
View File
@@ -10,10 +10,14 @@
environment.systemPackages = with pkgs; [
gnome-disk-utility
];
environment.cosmic.excludePackages = with pkgs; [
cosmic-files
];
programs.kdeconnect = {
enable = true;
package = pkgs.valent;
};
enable = true;
package = pkgs.valent;
};
services.desktopManager.cosmic.showExcludedPkgsWarning = false;
}
+2 -2
View File
@@ -1,9 +1,9 @@
{ config, lib, inputs, pkgs, ... }: {
imports = [
#./cosmic.nix
./cosmic.nix
#./gnome.nix
./kde.nix
#./kde.nix
];
}
+1
View File
@@ -6,5 +6,6 @@
./steam.nix
./lact.nix
./obs.nix
./thunar.nix
];
}
+2 -1
View File
@@ -38,7 +38,8 @@
haguichi
logmein-hamachi
zerotierone
kdePackages.ark
## inputs stable
#inputs.nixpkgs-stable.legacyPackages.${pkgs.stdenv.hostPlatform.system}
];
+21
View File
@@ -0,0 +1,21 @@
{ config, lib, inputs, pkgs, ... }: {
programs.xfconf.enable = true;
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-vcs-plugin
thunar-volman
];
};
services = {
gvfs.enable = true;
tumbler.enable = true;
};
}