summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-13 21:54:21 -0400
committerseth <[email protected]>2023-03-13 21:56:00 -0400
commite47d8ff5d4c8b8961f4fa6e3a0e2ce381abafb90 (patch)
tree959e91356ddd96a2ad99b29dbcdc2bbf1f42e642 /hosts
parentd6c835d18c4149f18bf281e7fc22c18e5854ea06 (diff)
add glados' services/network configs to desktop profile
Diffstat (limited to 'hosts')
-rw-r--r--hosts/glados/default.nix2
-rw-r--r--hosts/glados/network.nix9
-rw-r--r--hosts/glados/services.nix16
3 files changed, 0 insertions, 27 deletions
diff --git a/hosts/glados/default.nix b/hosts/glados/default.nix
index 0efc154..3cb8f82 100644
--- a/hosts/glados/default.nix
+++ b/hosts/glados/default.nix
@@ -6,8 +6,6 @@
../../users/seth
./boot.nix
./hardware-configuration.nix
- ./network.nix
- ./services.nix
];
home-manager.users.seth = {
diff --git a/hosts/glados/network.nix b/hosts/glados/network.nix
deleted file mode 100644
index 11b2d6f..0000000
--- a/hosts/glados/network.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-_: {
- networking = {
- hostId = "2bf6e602";
- networkmanager = {
- enable = true;
- dns = "systemd-resolved";
- };
- };
-}
diff --git a/hosts/glados/services.nix b/hosts/glados/services.nix
deleted file mode 100644
index 4d83240..0000000
--- a/hosts/glados/services.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-_: {
- services = {
- dbus = {
- enable = true;
- apparmor = "enabled";
- };
- pipewire = {
- enable = true;
- wireplumber.enable = true;
- alsa.enable = true;
- jack.enable = true;
- pulse.enable = true;
- };
- };
- hardware.pulseaudio.enable = false;
-}