fixing xdg dirs

This commit is contained in:
Miguel Palhas
2025-09-12 11:48:50 +01:00
parent 1f1cfd1528
commit 210816b5f1
4 changed files with 22 additions and 22 deletions
Generated
+6 -6
View File
@@ -216,11 +216,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1748979197, "lastModified": 1757650187,
"narHash": "sha256-mKYwYcO9RmA2AcAFIXGDBOw5iv/fbjw6adWvMbnfIuk=", "narHash": "sha256-OrythrqccPKtuVt0mj26rr83Qo3Ljb4ZmwLdPGjzjMU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "34a13086148cbb3ae65a79f753eb451ce5cac3d3", "rev": "9eab59f3e71ea3a725e4817d8dcf0da0824ad19d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -404,11 +404,11 @@
}, },
"nixpkgs_4": { "nixpkgs_4": {
"locked": { "locked": {
"lastModified": 1748929857, "lastModified": 1757487488,
"narHash": "sha256-lcZQ8RhsmhsK8u7LIFsJhsLh/pzR9yZ8yqpTzyGdj+Q=", "narHash": "sha256-zwE/e7CuPJUWKdvvTCB7iunV4E/+G0lKfv4kk/5Izdg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c2a03962b8e24e669fb37b7df10e7c79531ff1a4", "rev": "ab0f3607a6c7486ea22229b92ed2d355f1482ee0",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1 -1
View File
@@ -3,7 +3,7 @@
xdg = { xdg = {
userDirs = { userDirs = {
enable = true; enable = true;
createDirectories = true; createDirectories = false;
desktop = null; desktop = null;
documents = null; documents = null;
download = "downloads"; download = "downloads";
+1 -1
View File
@@ -45,7 +45,7 @@
# themes # themes
tela-icon-theme tela-icon-theme
papirus-icon-theme # papirus-icon-theme
]; ];
gtk = { gtk = {
+14 -14
View File
@@ -5,21 +5,21 @@
}: }:
{ {
imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ]; # imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
home.packages = with pkgs; [ upower ]; home.packages = with pkgs; [ upower ];
programs.hyprpanel = { # programs.hyprpanel = {
enable = true; # # enable = true;
overlay.enable = true; # overlay.enable = true;
overwrite.enable = true; # overwrite.enable = true;
#
settings = { # settings = {
theme.bar.transparent = true; # theme.bar.transparent = true;
theme.font = { # theme.font = {
name = "Fira Code Nerd Font"; # name = "Fira Code Nerd Font";
size = "14px"; # size = "14px";
}; # };
}; # };
}; # };
} }