summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/fina/default.nix34
1 files changed, 2 insertions, 32 deletions
diff --git a/hosts/fina/default.nix b/hosts/fina/default.nix
index 30f7dcd..b1395c6 100644
--- a/hosts/fina/default.nix
+++ b/hosts/fina/default.nix
@@ -1,5 +1,4 @@
{
- secrets,
self,
...
}:
@@ -14,21 +13,16 @@
config = {
modules.nix.extend = false;
system.stateVersion = "24.05";
+ networking.hostName = "fina";
+ programs.mtr.enable = true;
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
- networking = {
- hostName = "fina";
- networkmanager.enable = true;
- };
-
services = {
desktopManager.plasma6.enable = true;
- printing.enable = true;
- libinput.enable = true;
displayManager.sddm = {
enable = true;
@@ -40,34 +34,10 @@
options = "caps:escape";
};
- pipewire = {
- enable = true;
- pulse.enable = true;
- };
-
openssh = {
enable = true;
settings.PermitRootLogin = "yes";
};
};
-
- users.users = {
- root.initialHashedPassword = secrets.initial_hashed_password;
-
- ebisu = {
- isNormalUser = true;
- extraGroups = [ "wheel" ];
- initialHashedPassword = secrets.initial_hashed_password;
- };
- };
-
- programs = {
- mtr.enable = true;
-
- gnupg.agent = {
- enable = true;
- enableSSHSupport = true;
- };
- };
};
}