30 lines
472 B
Nix
30 lines
472 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;
|
|
laptop = true;
|
|
};
|
|
|
|
system.stateVersion = "22.05";
|
|
|
|
}
|