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": {
"lastModified": 1748979197,
"narHash": "sha256-mKYwYcO9RmA2AcAFIXGDBOw5iv/fbjw6adWvMbnfIuk=",
"lastModified": 1757650187,
"narHash": "sha256-OrythrqccPKtuVt0mj26rr83Qo3Ljb4ZmwLdPGjzjMU=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "34a13086148cbb3ae65a79f753eb451ce5cac3d3",
"rev": "9eab59f3e71ea3a725e4817d8dcf0da0824ad19d",
"type": "github"
},
"original": {
@@ -404,11 +404,11 @@
},
"nixpkgs_4": {
"locked": {
"lastModified": 1748929857,
"narHash": "sha256-lcZQ8RhsmhsK8u7LIFsJhsLh/pzR9yZ8yqpTzyGdj+Q=",
"lastModified": 1757487488,
"narHash": "sha256-zwE/e7CuPJUWKdvvTCB7iunV4E/+G0lKfv4kk/5Izdg=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "c2a03962b8e24e669fb37b7df10e7c79531ff1a4",
"rev": "ab0f3607a6c7486ea22229b92ed2d355f1482ee0",
"type": "github"
},
"original": {
+1 -1
View File
@@ -3,7 +3,7 @@
xdg = {
userDirs = {
enable = true;
createDirectories = true;
createDirectories = false;
desktop = null;
documents = null;
download = "downloads";
+1 -1
View File
@@ -45,7 +45,7 @@
# themes
tela-icon-theme
papirus-icon-theme
# papirus-icon-theme
];
gtk = {
+14 -14
View File
@@ -5,21 +5,21 @@
}:
{
imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
# imports = [ inputs.hyprpanel.homeManagerModules.hyprpanel ];
home.packages = with pkgs; [ upower ];
programs.hyprpanel = {
enable = true;
overlay.enable = true;
overwrite.enable = true;
settings = {
theme.bar.transparent = true;
theme.font = {
name = "Fira Code Nerd Font";
size = "14px";
};
};
};
# programs.hyprpanel = {
# # enable = true;
# overlay.enable = true;
# overwrite.enable = true;
#
# settings = {
# theme.bar.transparent = true;
# theme.font = {
# name = "Fira Code Nerd Font";
# size = "14px";
# };
# };
# };
}