sneeuwvlok/_hosts/manwe/default.nix
2025-07-28 14:34:09 +02:00

37 lines
638 B
Nix

{ config, pkgs, ... }:
{
fileSystems = {
"/home/chris/games" = {
device = "/dev/disk/by-label/games";
fsType = "ext4";
};
"/home/chris/data" = {
device = "/dev/disk/by-label/Data";
fsType = "ntfs-3g";
options = [ "rw" "uid=chris" ];
};
};
modules = {
boot = {
silentBoot = true;
animatedBoot = true;
};
desktop.gaming.enable = true;
system.audio.enable = true;
root = {
user = {
full_name = "__ROOT__";
email = "__ROOT__@${config.networking.hostName}";
};
shell = {
default = "zsh";
};
};
};
}