summaryrefslogtreecommitdiff
path: root/hosts/fina/default.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-01 06:02:50 -0700
committerFuwn <[email protected]>2024-10-01 06:02:50 -0700
commitfcddd3ba06088e235243d41395e40fd9e0107a76 (patch)
tree8b4fabd85315ec93a09842a2123a2e6e16583c75 /hosts/fina/default.nix
parentmodules: move shared i18n to pc (diff)
downloadnixos-config-fcddd3ba06088e235243d41395e40fd9e0107a76.tar.xz
nixos-config-fcddd3ba06088e235243d41395e40fd9e0107a76.zip
modules: move shared pc modules from desktop to pc
Diffstat (limited to 'hosts/fina/default.nix')
-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;
- };
- };
};
}