aboutsummaryrefslogtreecommitdiff
path: root/hosts/jupiter/config.nix
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-06-09 17:40:46 +0000
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2025-06-09 17:40:46 +0000
commita45c4551712c1ba5cb82eaf290f311ab0e8690e4 (patch)
treef62b23489fb31f8ea58fef77f99619efd784eb36 /hosts/jupiter/config.nix
big changes
Diffstat (limited to 'hosts/jupiter/config.nix')
-rw-r--r--hosts/jupiter/config.nix67
1 files changed, 67 insertions, 0 deletions
diff --git a/hosts/jupiter/config.nix b/hosts/jupiter/config.nix
new file mode 100644
index 0000000..d8c2037
--- /dev/null
+++ b/hosts/jupiter/config.nix
@@ -0,0 +1,67 @@
+{inputs, ...}: {
+ nix-furnace = {
+ extraHomeModules = [
+ ./home.nix
+ ];
+
+ extraSystemModules = [
+ ./system.nix
+ ];
+ };
+
+ collinux = {
+ theme = "adwaita";
+
+ user = {
+ name = "collin";
+ email = "96917990+bluedragon1221@users.noreply.github.com";
+ password = "$y$j9T$08yFysn8jr9K4Wk.hYXbG0$NzY9vIbNknJViA..Jw.vF8wmQtBgEZZU.cdLQOmDvU2";
+ };
+
+ desktop = {
+ gnome.enable = true;
+
+ programs = {
+ firefox.enable = true;
+ };
+ };
+
+ terminal = {
+ theme = "adwaita";
+
+ terminalEmulators.blackbox.enable = true;
+
+ shells.fish.enable = true;
+
+ programs = {
+ bat.enable = true;
+ eza.enable = true;
+ fzf.enable = true;
+
+ nh.enable = true;
+ lazygit.enable = true;
+
+ starship = {
+ enable = true;
+ theme = "default";
+ };
+
+ helix = {
+ enable = true;
+ hardMode = false;
+ };
+ };
+ };
+
+ boot = {
+ theme = "default";
+ bootloader = "systemd-boot";
+ plymouth.enable = true;
+ };
+
+ networking = {
+ enable = true;
+ wifiDaemon = "networkmanager"; # apparently gnome doesn't support iwd
+ };
+ };
+}