feat: add gtk bookmarks
Some checks failed
/ test (push) Has been cancelled

This commit is contained in:
nydragon 2025-03-17 18:12:55 +01:00
parent b6b1b3a1fe
commit 90d41328c1
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 22 additions and 4 deletions

6
flake.lock generated
View file

@ -186,11 +186,11 @@
]
},
"locked": {
"lastModified": 1740813707,
"narHash": "sha256-68aj7BGtwU3lTDupA1pvVrOxOswqIvnXWRCHkJyBSvk=",
"lastModified": 1742231203,
"narHash": "sha256-pnYUjLfx61IKmg9+So8BdSkZCjb69ynpLlKqy7ba9s0=",
"owner": "nydragon",
"repo": "hjem-rum",
"rev": "04a953ecd7ce494f7528bede04d5705f119319c8",
"rev": "7cd095c4064072c603bc3b02eaa33d11735c1cf4",
"type": "github"
},
"original": {

View file

@ -12,7 +12,10 @@ in
hjem = {
users.${username} = {
enable = true;
imports = [ ./programs ];
imports = [
./programs
./misc
];
};
specialArgs = {
libmy = lib.my;

View file

@ -0,0 +1,3 @@
{
imports = [ ./gtk.nix ];
}

12
users/ny/misc/gtk.nix Normal file
View file

@ -0,0 +1,12 @@
{
rum.gtk = {
enable = true;
bookmarks = [
"file:///home/ny/Documents Documents"
"file:///home/ny/Music Music"
"file:///home/ny/Pictures Pictures"
"file:///home/ny/Videos Videos"
"file:///home/ny/Downloads Downloads"
];
};
}