From 90d41328c1893eadce16ee5f1dcc41bb43ecd393 Mon Sep 17 00:00:00 2001 From: nydragon Date: Mon, 17 Mar 2025 18:12:55 +0100 Subject: [PATCH] feat: add gtk bookmarks --- flake.lock | 6 +++--- users/ny/default.nix | 5 ++++- users/ny/misc/default.nix | 3 +++ users/ny/misc/gtk.nix | 12 ++++++++++++ 4 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 users/ny/misc/default.nix create mode 100644 users/ny/misc/gtk.nix diff --git a/flake.lock b/flake.lock index e6191e3..6e7605f 100644 --- a/flake.lock +++ b/flake.lock @@ -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": { diff --git a/users/ny/default.nix b/users/ny/default.nix index d855773..8cea41e 100644 --- a/users/ny/default.nix +++ b/users/ny/default.nix @@ -12,7 +12,10 @@ in hjem = { users.${username} = { enable = true; - imports = [ ./programs ]; + imports = [ + ./programs + ./misc + ]; }; specialArgs = { libmy = lib.my; diff --git a/users/ny/misc/default.nix b/users/ny/misc/default.nix new file mode 100644 index 0000000..32e532c --- /dev/null +++ b/users/ny/misc/default.nix @@ -0,0 +1,3 @@ +{ + imports = [ ./gtk.nix ]; +} diff --git a/users/ny/misc/gtk.nix b/users/ny/misc/gtk.nix new file mode 100644 index 0000000..2132d2a --- /dev/null +++ b/users/ny/misc/gtk.nix @@ -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" + ]; + }; +}