diff options
Diffstat (limited to '')
| -rw-r--r-- | hosts/bear/configuration.nix | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/hosts/bear/configuration.nix b/hosts/bear/configuration.nix new file mode 100644 index 0000000..bf9c10d --- /dev/null +++ b/hosts/bear/configuration.nix @@ -0,0 +1,57 @@ +{ + config, + pkgs, + inputs, + customNeovim, + ... +}: { + networking = { + computerName = "bear"; + hostName = "bear"; + localHostName = "bear"; + }; + # Primary user for user-specific settings (dock, etc.) + system.primaryUser = "andrewmontgomery"; + # List packages installed in system profile. To search by name, run: + # $ nix-env -qaP | grep wget + environment.systemPackages = with pkgs; [ + customNeovim.neovim + senpai + mpv + ]; + + homebrew = { + enable = true; + user = "andrewmontgomery"; + + taps = [ + ]; + brews = [ + ]; + casks = [ + "keepassxc" + "protonvpn" + "selfcontrol" + "kdenlive" + "audacity" + "steam" + ]; + }; + # Dock configuration + system.defaults.dock = { + persistent-apps = [ + "/System/Applications/Reminders.app" + "/System/Applications/Calendar.app" + "/System/Applications/Music.app" + "/System/Applications/Messages.app" + + "/Applications/KeePassXC.app" + "/Applications/Ghostty.app" + # "/Applications/Nix Apps/Brave Browser.app" + "/Applications/Nix Apps/LibreWolf.app" + # "/Applications/Nix Apps/UTM.app" + + "/System/Applications/System Settings.app" + ]; + }; +} |
