2022-10-13 22:13:43 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
|
|
inherit (import ../lib.nix {
|
|
|
|
inherit lib;
|
|
|
|
inherit pkgs;
|
|
|
|
})
|
|
|
|
nLib;
|
|
|
|
in {
|
2023-03-29 21:06:19 -04:00
|
|
|
imports = [
|
|
|
|
../options.nix
|
|
|
|
../common/programs/utils.nix
|
|
|
|
./user.nix
|
|
|
|
./fonts.nix
|
|
|
|
./settings.nix
|
2023-03-30 16:14:00 -04:00
|
|
|
./media.nix
|
2023-03-29 21:06:19 -04:00
|
|
|
];
|
2022-10-13 22:13:43 -04:00
|
|
|
|
|
|
|
options = with lib;
|
|
|
|
with nLib; {
|
|
|
|
nathan = {
|
|
|
|
config = {
|
|
|
|
# Install fonts
|
|
|
|
# On by default if the system is a desktop
|
|
|
|
fonts = mkDefaultOption "fonts" config.nathan.config.isDesktop;
|
2023-03-29 21:06:19 -04:00
|
|
|
# Macos settings
|
|
|
|
settings = mkDefaultOption "settings" config.nathan.config.isDesktop;
|
2022-10-13 22:13:43 -04:00
|
|
|
};
|
|
|
|
programs = {
|
|
|
|
# Firefox, enabled by default on linux desktop
|
|
|
|
firefox = mkDefaultOption "Firefox" config.nathan.config.isDesktop;
|
|
|
|
syncthing =
|
|
|
|
mkDefaultOption "syncthing" config.nathan.config.isDesktop;
|
|
|
|
# Communications applications
|
|
|
|
communications = {
|
|
|
|
# Enable by default if we are on a linux desktop
|
|
|
|
enable = mkDefaultOption "Communication applications"
|
|
|
|
config.nathan.config.isDesktop;
|
|
|
|
};
|
2023-03-30 16:14:00 -04:00
|
|
|
media = {
|
|
|
|
# Enable by default if we are on a linux desktop
|
|
|
|
enable = mkDefaultOption "Media applications"
|
|
|
|
config.nathan.config.isDesktop;
|
|
|
|
};
|
2023-03-27 20:05:12 -04:00
|
|
|
# Virtualization
|
|
|
|
virtualization =
|
|
|
|
mkDefaultOption "Virtualization" config.nathan.config.isDesktop;
|
2023-04-12 22:59:39 -04:00
|
|
|
# development tools
|
|
|
|
devel = {
|
|
|
|
python =
|
|
|
|
mkDefaultOption "Virtualization" config.nathan.config.isDesktop;
|
|
|
|
};
|
2022-10-13 22:13:43 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
# Link applications in spotlight/launchpad
|
|
|
|
system.activationScripts.applications.text = pkgs.lib.mkForce (''
|
|
|
|
echo "setting up ~/Applications..." >&2
|
|
|
|
rm -rf ~/Applications/Nix\ Apps
|
|
|
|
mkdir -p ~/Applications/Nix\ Apps
|
|
|
|
for app in $(find ${config.system.build.applications}/Applications -maxdepth 1 -type l); do
|
|
|
|
src="$(/usr/bin/stat -f%Y "$app")"
|
|
|
|
cp -r "$src" ~/Applications/Nix\ Apps
|
|
|
|
done
|
|
|
|
'');
|
|
|
|
# Set system state version
|
|
|
|
system.stateVersion = 4;
|
|
|
|
# Enable flakes
|
|
|
|
# Enable nix flakes
|
|
|
|
nix.package = pkgs.nixFlakes;
|
|
|
|
nix.extraOptions = ''
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
'';
|
|
|
|
services.nix-daemon.enable = true;
|
|
|
|
# Replace some macos packages
|
|
|
|
environment.systemPackages = with pkgs; [ coreutils-full openssh ];
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
programs.fish.enable = true;
|
|
|
|
# Make nix managed fonts work
|
|
|
|
fonts.fontDir.enable = true;
|
2023-03-29 21:06:19 -04:00
|
|
|
# Configure nix to be a lil smarter with the store
|
|
|
|
nix.settings.auto-optimise-store = true;
|
2022-10-13 22:13:43 -04:00
|
|
|
# Make nix assume control of homebrew
|
|
|
|
homebrew = {
|
|
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
|
|
autoUpdate = true;
|
|
|
|
upgrade = true;
|
|
|
|
cleanup = "zap";
|
|
|
|
};
|
2023-03-30 16:14:00 -04:00
|
|
|
taps = [ "homebrew/cask-versions" ];
|
2022-10-13 22:13:43 -04:00
|
|
|
casks = lib.mkMerge [
|
|
|
|
(lib.mkIf config.nathan.programs.firefox [{ name = "firefox"; }])
|
2023-03-27 22:26:32 -04:00
|
|
|
(lib.mkIf config.nathan.programs.virtualization [{ name = "utm"; }])
|
2023-04-12 22:59:39 -04:00
|
|
|
(lib.mkIf config.nathan.programs.devel.python [{ name = "miniconda"; }])
|
2022-10-13 22:13:43 -04:00
|
|
|
(lib.mkIf config.nathan.programs.communications.enable [
|
|
|
|
{ name = "discord"; }
|
|
|
|
{ name = "betterdiscord-installer"; }
|
2022-10-15 05:06:58 -04:00
|
|
|
{ name = "signal"; }
|
2023-03-30 10:26:15 -04:00
|
|
|
{ name = "orangedrangon-android-messages"; }
|
|
|
|
{ name = "messenger"; }
|
2022-10-13 22:13:43 -04:00
|
|
|
])
|
2023-03-27 18:51:59 -04:00
|
|
|
# Unconditionally install core utilites
|
|
|
|
[
|
|
|
|
{ name = "keepingyouawake"; }
|
2023-03-27 22:27:27 -04:00
|
|
|
{ name = "flux"; }
|
2023-03-27 18:51:59 -04:00
|
|
|
{ name = "iterm2"; }
|
|
|
|
{ name = "gpg-suite"; }
|
2023-03-30 19:29:18 -04:00
|
|
|
{ name = "amethyst"; }
|
2023-04-03 09:54:07 -04:00
|
|
|
{ name = "docker"; }
|
2023-03-27 18:51:59 -04:00
|
|
|
]
|
2022-10-13 22:13:43 -04:00
|
|
|
];
|
|
|
|
brews = lib.mkMerge [
|
|
|
|
(lib.mkIf config.nathan.programs.syncthing [{
|
|
|
|
name = "syncthing";
|
|
|
|
restart_service = true;
|
|
|
|
start_service = true;
|
|
|
|
}])
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|