summaryrefslogtreecommitdiff
path: root/hosts/office-precision/configuration.nix
diff options
context:
space:
mode:
authorTim Keller <tjk@tjkeller.xyz>2026-08-20 13:10:39 -0500
committerTim Keller <tjk@tjkeller.xyz>2026-08-20 13:10:39 -0500
commit125cc3e243145105dc2080a6fcd38d432aca5c69 (patch)
tree19af83ff70c2e85b41a1c64e72cb3b7c71f09d72 /hosts/office-precision/configuration.nix
parentd3385a06d3ba962c532e45729f85ac5e65180e60 (diff)
downloadnixos-125cc3e243145105dc2080a6fcd38d432aca5c69.tar.xz
nixos-125cc3e243145105dc2080a6fcd38d432aca5c69.zip
gnome update and add guest user on office-precisionHEADmaster
Diffstat (limited to 'hosts/office-precision/configuration.nix')
-rw-r--r--hosts/office-precision/configuration.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/office-precision/configuration.nix b/hosts/office-precision/configuration.nix
index 95b4a0a..3c70d91 100644
--- a/hosts/office-precision/configuration.nix
+++ b/hosts/office-precision/configuration.nix
@@ -14,6 +14,11 @@
enable = true;
home.users.timmy.enable = true;
};
+ gnome = {
+ home.users.timmy.enable = true;
+ home.users.guest.enable = true;
+ enable = true;
+ };
btrfs.enable = true;
};
collections = {
@@ -43,6 +48,11 @@
};
};
+ users.users.guest = {
+ description = "Guest";
+ isNormalUser = true;
+ };
+
# Disable suspend
systemd._suspend.disable = true;
@@ -82,6 +92,12 @@
"file:///media/chexx/chexx cHEXx"
];
};
+ home-manager.users.guest = {
+ gtk.gtk3.bookmarks = [
+ "file:///media/chexx/chexx cHEXx"
+ ];
+ home.stateVersion = "26.05";
+ };
system.stateVersion = "24.11";
}