Added reykjavik config

This commit is contained in:
Marc Sastre Rienitz
2022-11-02 22:17:42 +00:00
parent bd9ac68acf
commit c1bd2ea1d7
4 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
{ 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";
}