Files
samfelag/system/hosts/reykjavik/default.nix
2022-11-02 22:51:28 +00:00

27 lines
440 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./hardware.nix
];
# - Basic --------------------------------------
networking.hostName = "reykjavik";
samfelag.modules.user = {
name = "marc";
};
# - Bootloader ---------------------------------
boot.loader.systemd-boot.enable = true;
# - Services -----------------------------------
samfelag.profiles.desktop.enable = true;
system.stateVersion = "22.05";
}