summaryrefslogtreecommitdiff
path: root/hosts/hp-envy-office/configuration.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/hp-envy-office/configuration.nix')
-rw-r--r--hosts/hp-envy-office/configuration.nix39
1 files changed, 24 insertions, 15 deletions
diff --git a/hosts/hp-envy-office/configuration.nix b/hosts/hp-envy-office/configuration.nix
index 60be56d..340eda3 100644
--- a/hosts/hp-envy-office/configuration.nix
+++ b/hosts/hp-envy-office/configuration.nix
@@ -1,9 +1,4 @@
{ config, lib, pkgs, ... }: {
- imports = [
- ./hardware-configuration.nix
- ../../nixos/archetypes/tjkeller
- ];
-
# Setup bootloader
boot._loader.enable = true;
boot.loader.timeout = 15; # Show for longer since it's usually skipped
@@ -27,18 +22,17 @@
};
};
virtualization.enable = true;
- bluetooth.enable = true;
};
- # Setup user
- users.primary = {
+ };
+
+ # Enable user timmy
+ _users.timmy = {
+ enable = true;
+ autologin.enable = true;
+ nas = {
enable = true;
- };
- tjkeller = {
- nas = {
- enable = true;
- office.enable = true;
- office.automount = true;
- };
+ office.enable = true;
+ office.automount = true;
};
};
@@ -48,5 +42,20 @@
# Use amdgpu driver for x11
services.xserver.videoDrivers = [ "amdgpu" ];
+ # Configure home
+ home-manager.users.timmy = {
+ gtk._mintTheme = {
+ dark = true;
+ color = "Green";
+ icons.color = "Green";
+ };
+ programs._seasonalwallpaper.wallpapers.download = true;
+
+ gtk.gtk3.bookmarks = [
+ "file:///home/timmy/docs/src/sites/admin Admin"
+ "file:///media/chexx/chexx cHEXx"
+ ];
+ };
+
system.stateVersion = "24.11";
}