29 lines
515 B
Nix
29 lines
515 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
];
|
|
|
|
# - Basic --------------------------------------
|
|
|
|
networking.hostName = "reykjavik";
|
|
|
|
samfelag.modules.user = {
|
|
name = "marc";
|
|
};
|
|
|
|
# - Bootloader ---------------------------------
|
|
|
|
boot.loader.grub.enable = true;
|
|
boot.loader.grub.device = "/dev/nvme0n1";
|
|
boot.loader.grub.useOSProber = true;
|
|
|
|
# - Services -----------------------------------
|
|
|
|
samfelag.profiles.desktop.enable = true;
|
|
|
|
system.stateVersion = "22.05";
|
|
|
|
}
|