Manually manage Marauder boot and filesystem options

This commit is contained in:
Nettika 2024-07-12 12:39:06 -07:00
parent 300c82fb87
commit 116c382db5
6 changed files with 112 additions and 155 deletions

24
monolith/default.nix Normal file
View file

@ -0,0 +1,24 @@
{ ... }: {
networking = {
hostName = "marauder";
networkmanager.enable = true;
};
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
users.users = {
nettika = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
time.timeZone = "America/Los_Angeles";
system.stateVersion = "24.05";
}