aboutsummaryrefslogtreecommitdiff
path: root/hosts/jupiter
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-18 08:10:20 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-18 08:10:20 -0600
commitd6c4bd6d87d31a2c688fb2fcfdb0cb15d8f9163d (patch)
tree07f85b8fac540f7625f90b10ee500a1bc8116ac3 /hosts/jupiter
parented2550a41c8429a1d2fe897deb878717c2ebc3d1 (diff)
parent43af7f28b28021932b318964a953463d8dd79372 (diff)
Merge branch 'main' into wg
Diffstat (limited to 'hosts/jupiter')
-rw-r--r--hosts/jupiter/config.nix5
-rw-r--r--hosts/jupiter/nixos.nix15
2 files changed, 2 insertions, 18 deletions
diff --git a/hosts/jupiter/config.nix b/hosts/jupiter/config.nix
index cd4df81..806785e 100644
--- a/hosts/jupiter/config.nix
+++ b/hosts/jupiter/config.nix
@@ -76,10 +76,7 @@
sshd.enable = true;
};
- audio = {
- enable = true;
- pulse.enable = true;
- };
+ audio.enable = true;
bluetooth.enable = true;
};
diff --git a/hosts/jupiter/nixos.nix b/hosts/jupiter/nixos.nix
index e39328a..80ab0f4 100644
--- a/hosts/jupiter/nixos.nix
+++ b/hosts/jupiter/nixos.nix
@@ -1,21 +1,8 @@
-{
- inputs,
- pkgs,
- ...
-}: {
+{inputs, ...}: {
imports = [
./disks.nix
inputs.nixos-facter-modules.nixosModules.facter
];
- boot.blacklistedKernelModules = ["snd_seq_dummy"];
-
- systemd.network.wait-online.enable = false; # fix for weird wifi issue
-
- fonts.packages = [pkgs.nerd-fonts.iosevka];
-
facter.reportPath = ./facter.json;
- time.timeZone = "America/Chicago";
- nixpkgs.hostPlatform = "x86_64-linux";
- system.stateVersion = "25.05";
}