diff options
| author | schererleander <leander@schererleander.de> | 2026-02-05 12:03:07 +0100 |
|---|---|---|
| committer | schererleander <leander@schererleander.de> | 2026-02-05 15:19:41 +0100 |
| commit | 3b13d9a2a367db84d48940460532c17a374bb488 (patch) | |
| tree | 599110a39c4baecf3991fe9a58d0103a43c38896 /hosts/lilith/configuration.nix | |
| parent | 46aa4842b98d9215baca00060c233f386a0c2188 (diff) | |
feat(modules): use dendritic pattern
Diffstat (limited to 'hosts/lilith/configuration.nix')
| -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; -} |
