summaryrefslogtreecommitdiff
path: root/hosts/glados
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/glados')
-rw-r--r--hosts/glados/boot.nix2
-rw-r--r--hosts/glados/default.nix5
-rw-r--r--hosts/glados/network.nix2
-rw-r--r--hosts/glados/packages.nix6
-rw-r--r--hosts/glados/services.nix3
5 files changed, 6 insertions, 12 deletions
diff --git a/hosts/glados/boot.nix b/hosts/glados/boot.nix
index d0f0b22..e856fb1 100644
--- a/hosts/glados/boot.nix
+++ b/hosts/glados/boot.nix
@@ -19,7 +19,5 @@
enable = true;
pkiBundle = "/etc/secureboot";
};
-
- supportedFilesystems = ["zfs"];
};
}
diff --git a/hosts/glados/default.nix b/hosts/glados/default.nix
index 39687a2..d6eba70 100644
--- a/hosts/glados/default.nix
+++ b/hosts/glados/default.nix
@@ -1,5 +1,4 @@
{
- config,
modulesPath,
pkgs,
...
@@ -12,11 +11,10 @@
./boot.nix
./network.nix
./packages.nix
+ ./services.nix
../../users/seth
];
- system.gui-stuff = true;
-
# enable non-free packages
nixpkgs.config.allowUnfree = true;
@@ -25,4 +23,5 @@
nix.settings.experimental-features = ["nix-command" "flakes"];
system.stateVersion = "23.05";
+ sys.gui.enable = true;
}
diff --git a/hosts/glados/network.nix b/hosts/glados/network.nix
index e55a0a2..021a1e9 100644
--- a/hosts/glados/network.nix
+++ b/hosts/glados/network.nix
@@ -1,4 +1,4 @@
-{config, ...}: {
+_: {
networking = {
hostId = "replace_me";
networkmanager = {
diff --git a/hosts/glados/packages.nix b/hosts/glados/packages.nix
index 2765f35..7066911 100644
--- a/hosts/glados/packages.nix
+++ b/hosts/glados/packages.nix
@@ -1,8 +1,4 @@
-{
- config,
- pkgs,
- ...
-}: {
+{pkgs, ...}: {
environment.systemPackages = with pkgs; [
git
gnupg1
diff --git a/hosts/glados/services.nix b/hosts/glados/services.nix
index a71acbd..95a7882 100644
--- a/hosts/glados/services.nix
+++ b/hosts/glados/services.nix
@@ -1,4 +1,4 @@
-{config, ...}: {
+_: {
services = {
dbus.enable = true;
pipewire = {
@@ -9,4 +9,5 @@
pulse.enable = true;
};
};
+ hardware.pulseaudio.enable = false;
}