nixos-config/hosts/nixdev/default.nix
2022-03-07 13:13:33 -05:00

40 lines
1.1 KiB
Nix

{ config, lib, pkgs, ... }:
{
networking.hostName = "nixdev";
sconfig = {
gnome = true;
profile = "desktop";
};
services.openssh.enable = true;
users.mutableUsers = false;
users.users.root.passwordFile = "/nix/persist/shadow_sean";
users.users.sean.passwordFile = "/nix/persist/shadow_sean";
environment.etc =
lib.genAttrs
[
"machine-id"
"ssh/ssh_host_ed25519_key"
"ssh/ssh_host_rsa_key"
]
(name: { source = "/nix/persist/etc/${name}"; });
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
fileSystems =
{
"/" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "mode=755" ]; };
"/boot" = { device = "/dev/disk/by-partlabel/_esp"; fsType = "vfat"; options = [ "discard" "noatime" ]; };
"/nix" = { device = "/dev/disk/by-partlabel/_nix"; fsType = "ext4"; options = [ "discard" "noatime" ]; };
"/home" = { device = "/nix/persist/home"; noCheck = true; options = [ "bind" ]; };
"/var/log" = { device = "/nix/persist/var/log"; noCheck = true; options = [ "bind" ]; };
};
system.stateVersion = "21.05";
}