diff options
Diffstat (limited to 'modules/hosts/hp-envy-office')
-rw-r--r-- | modules/hosts/hp-envy-office/home.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/hosts/hp-envy-office/home.nix b/modules/hosts/hp-envy-office/home.nix index ee56dc6..ed02130 100644 --- a/modules/hosts/hp-envy-office/home.nix +++ b/modules/hosts/hp-envy-office/home.nix @@ -1,7 +1,12 @@ -{ ... }: { +{ userDetails, ... }: { imports = [ ../../home ]; theme.mint.theme.color = "Dark-Green"; theme.mint.icons.color = "Green"; wallpapers.enable = true; + + additional-gtk-bookmarks = with userDetails; [ + "file://${home.documents}/src/sites/admin Admin" + "file:///media/chexx/chexx cHEXx" + ]; } |