summaryrefslogtreecommitdiff
path: root/hosts/cez/configuration.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-12-11 21:55:01 +0530
committersinanmohd <sinan@sinanmohd.com>2023-12-11 21:55:01 +0530
commitb3d21315cba95bf6f19af3212218a799b78bbdfd (patch)
tree21a1a3f92fb137cc7fd846029ec90b280871a0d5 /hosts/cez/configuration.nix
parentf5cd67215177c1ab732cff24d19689ce9b8785ef (diff)
cez/network: init
Diffstat (limited to 'hosts/cez/configuration.nix')
-rw-r--r--hosts/cez/configuration.nix18
1 files changed, 3 insertions, 15 deletions
diff --git a/hosts/cez/configuration.nix b/hosts/cez/configuration.nix
index 6e5d955..c76550e 100644
--- a/hosts/cez/configuration.nix
+++ b/hosts/cez/configuration.nix
@@ -9,6 +9,7 @@ in
./modules/wayland.nix
./modules/sshfs.nix
./modules/wireguard.nix
+ ./modules/network.nix
../../common.nix
];
@@ -17,6 +18,7 @@ in
consoleLogLevel = 3;
kernelPackages = pkgs.linuxPackages_latest;
};
+
sound = {
enable = true;
extraConfig = ''
@@ -25,22 +27,7 @@ in
'';
};
- networking = {
- hostName = "cez";
- useDHCP = false;
- firewall.enable = false;
-
- wireless.iwd = {
- enable = true;
- settings = {
- General.EnableNetworkConfiguration = true;
- Network.NameResolvingService = "resolvconf";
- };
- };
- };
-
services = {
- getty.autologinUser = user;
pipewire = {
enable = true;
pulse.enable = true;
@@ -49,5 +36,6 @@ in
enable = true;
settings.PasswordAuthentication = false;
};
+ getty.autologinUser = user;
};
}