aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/mercury/config.nix')
-rw-r--r--hosts/mercury/config.nix73
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;
+ };
+ };
+}