aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-19 17:32:27 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-09-19 17:32:27 -0500
commite63f4bda23477436bee8b30db73cf8deba4a8a5f (patch)
tree5897ba5e2e24c633d3c96b8d43213138118c6737 /hosts/mercury
parent6291fefa5741f201f29e2916ca29b93bcc6b7fc8 (diff)
parent5d0d346f838a7711fa79eb6edab828107b95a499 (diff)
merge changes from main
Diffstat (limited to 'hosts/mercury')
-rw-r--r--hosts/mercury/ai.nix1
-rw-r--r--hosts/mercury/config.nix30
-rw-r--r--hosts/mercury/disks.nix2
-rw-r--r--hosts/mercury/hjem.nix10
-rw-r--r--hosts/mercury/home.nix17
-rw-r--r--hosts/mercury/nixos.nix (renamed from hosts/mercury/system.nix)11
6 files changed, 28 insertions, 43 deletions
diff --git a/hosts/mercury/ai.nix b/hosts/mercury/ai.nix
index 1bece4a..42a478a 100644
--- a/hosts/mercury/ai.nix
+++ b/hosts/mercury/ai.nix
@@ -3,4 +3,5 @@
enable = true;
loadModels = ["deepseek-r1:1.5b"];
};
+ environment.systemPackages = [pkgs.mcphost];
}
diff --git a/hosts/mercury/config.nix b/hosts/mercury/config.nix
index 3790951..d5f0832 100644
--- a/hosts/mercury/config.nix
+++ b/hosts/mercury/config.nix
@@ -1,15 +1,4 @@
-{inputs, ...}: {
- nix-furnace = {
- extraSystemModules = [
- inputs.hjem.nixosModules.default
- ./system.nix
- ./disks.nix
- ];
- extraHomeModules = [
- ./home.nix
- ];
- };
-
+{
collinux = {
theme = "catppuccin";
@@ -19,14 +8,23 @@
};
desktop = {
- sway.enable = true;
wallpaper = ./wallpaper.jpg;
- components.fuzzel.enable = true;
- components.dunst.enable = true;
+
+ gtk.enable = true;
+
+ greetd.enable = true;
+
+ sway = {
+ enable = true;
+ components.fuzzel.enable = true;
+ components.dunst.enable = true;
+ };
programs = {
firefox.enable = true;
foot.enable = true;
+
+ research.enable = true;
};
};
@@ -73,7 +71,7 @@
boot = {
systemd-boot.enable = true;
- plymouth.enable = true;
+ # plymouth.enable = true;
secureBoot.enable = true;
};
};
diff --git a/hosts/mercury/disks.nix b/hosts/mercury/disks.nix
index ffa0871..af6c161 100644
--- a/hosts/mercury/disks.nix
+++ b/hosts/mercury/disks.nix
@@ -1,6 +1,4 @@
{
- # TODO: Replace this with disko eventually
-
fileSystems."/" = {
device = "/dev/disk/by-uuid/3d80a86b-3268-4209-a833-b531b8bc0ebc";
fsType = "ext4";
diff --git a/hosts/mercury/hjem.nix b/hosts/mercury/hjem.nix
new file mode 100644
index 0000000..463290c
--- /dev/null
+++ b/hosts/mercury/hjem.nix
@@ -0,0 +1,10 @@
+{pkgs, ...}: {
+ packages = with pkgs; [
+ # GUI apps
+ tor-browser # don't ask
+ obsidian
+ kdePackages.kleopatra
+ mpv
+ musescore
+ ];
+}
diff --git a/hosts/mercury/home.nix b/hosts/mercury/home.nix
deleted file mode 100644
index 5e80d16..0000000
--- a/hosts/mercury/home.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{pkgs, ...}: {
- home.preferXdgDirectories = true;
- home.packages = with pkgs; [
- # GUI apps
- tor-browser # don't ask
- obsidian
- kdePackages.kleopatra
- mpv
- musescore
- qutebrowser
-
- zotero
- zathura
- ];
-
- home.stateVersion = "25.05";
-}
diff --git a/hosts/mercury/system.nix b/hosts/mercury/nixos.nix
index 0e982a0..05e84a7 100644
--- a/hosts/mercury/system.nix
+++ b/hosts/mercury/nixos.nix
@@ -1,9 +1,11 @@
{
+ lib,
pkgs,
inputs,
...
}: {
imports = [
+ ./disks.nix
./battery.nix
./ai.nix
@@ -13,18 +15,11 @@
inputs.lanzaboote.nixosModules.lanzaboote
];
- fonts = {
- enableDefaultPackages = false;
- packages = with pkgs; [
- ibm-plex
- nerd-fonts.iosevka
- ];
- };
+ environment.defaultPackages = lib.mkForce []; # im not a noob
networking.firewall.allowedUDPPorts = [445];
networking.firewall.allowedTCPPorts = [8000];
users.users.collin.packages = [pkgs.cifs-utils];
- fonts.fontDir.enable = true;
system.stateVersion = "25.05";
}