17 lines
505 B
Nix
17 lines
505 B
Nix
# vim: tabstop=2 shiftwidth=2 expandtab
|
|
{ pkgs, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./firewall.nix
|
|
./userprogs.nix
|
|
./sourcehut.nix
|
|
];
|
|
|
|
boot.tmp.cleanOnBoot = true;
|
|
zramSwap.enable = true;
|
|
networking.hostName = "quasar";
|
|
networking.domain = "";
|
|
services.openssh.enable = true;
|
|
users.users.root.openssh.authorizedKeys.keys = [''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKQNIDqvhcfLKIDJybVI0o32CSDZpBXxjRxXj6OVQ93E khais@nixos'' ];
|
|
system.stateVersion = "23.11";
|
|
}
|