diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-06-09 17:40:46 +0000 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-06-09 17:40:46 +0000 |
| commit | a45c4551712c1ba5cb82eaf290f311ab0e8690e4 (patch) | |
| tree | f62b23489fb31f8ea58fef77f99619efd784eb36 /hosts/mercury/config.nix | |
big changes
Diffstat (limited to 'hosts/mercury/config.nix')
| -rw-r--r-- | hosts/mercury/config.nix | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/hosts/mercury/config.nix b/hosts/mercury/config.nix new file mode 100644 index 0000000..60c1c0c --- /dev/null +++ b/hosts/mercury/config.nix @@ -0,0 +1,73 @@ +{inputs, ...}: { + nix-furnace = { + extraSystemModules = [ + inputs.hjem.nixosModules.default + ./system.nix + ./disks.nix + ]; + extraHomeModules = [ + ./home.nix + ]; + }; + + collinux = { + theme = "catppuccin"; + + user = { + name = "collin"; + password = "$y$j9T$08yFysn8jr9K4Wk.hYXbG0$NzY9vIbNknJViA..Jw.vF8wmQtBgEZZU.cdLQOmDvU2"; + }; + + desktop = { + sway.enable = true; + wallpaper = ./wallpaper.jpg; + components.fuzzel.enable = true; + components.dunst.enable = true; + + programs = { + firefox.enable = true; + foot.enable = true; + musescore.enable = true; + }; + }; + + services = { + audio.enable = true; + networking = { + enable = true; + wifiDaemon = "iwd"; + }; + bluetooth.enable = true; + }; + + terminal = { + shells.fish.enable = true; + + programs = { + starship.enable = true; + tmux.enable = true; + lazygit.enable = true; + + git = { + enable = true; + userName = "Collin Williams"; + userEmail = "96917990+bluedragon1221@users.noreply.github.com"; + }; + + nh.enable = true; + cmus.enable = true; + + helix = { + enable = true; + hardMode = true; + }; + }; + }; + + boot = { + bootloader = "systemd-boot"; + plymouth.enable = true; + secureBoot.enable = true; + }; + }; +} |
