diff options
Diffstat (limited to 'hosts/lilith')
| -rw-r--r-- | hosts/lilith/configuration.nix | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/hosts/lilith/configuration.nix b/hosts/lilith/configuration.nix deleted file mode 100644 index a878584..0000000 --- a/hosts/lilith/configuration.nix +++ /dev/null @@ -1,60 +0,0 @@ -{ - host, - ... -}: - -let - username = "schererleander"; -in -{ - networking.hostName = host; - - # User configuration - users.users.${username}.home = "/Users/${username}"; - - home-manager.users.${username} = { - imports = [ ../../home/schererleander.nix ]; - home.username = username; - home.homeDirectory = "/Users/${username}"; - }; - - system.primaryUser = username; - system.defaults = { - dock = { - autohide = true; - largesize = 48; - show-recents = false; - }; - WindowManager.EnableStandardClickToShowDesktop = false; - finder = { - _FXShowPosixPathInTitle = true; - _FXSortFoldersFirst = true; - }; - controlcenter = { - Display = false; - FocusModes = false; - Sound = false; - }; - loginwindow.GuestEnabled = false; - }; - - homebrew = { - enable = true; - brews = [ - "openjdk@21" - ]; - casks = [ - "mullvad-vpn" - "nextcloud" - "iterm2" - "rectangle" - ]; - onActivation.cleanup = "zap"; - onActivation.autoUpdate = true; - onActivation.upgrade = true; - }; - - nix.enable = false; - - system.stateVersion = 5; -} |
