nixos/hosts/physical/crow/default.nix
KnightArtorias 39946c6953 Remove ZFS
2026-02-09 20:54:16 +00:00

38 lines
711 B
Nix

{
vars,
inputs,
...
}:
{
imports = [
./hardware-configuration.nix
./system-configuration.nix
../default.nix
../../../nixos/roles/physical/desktop/common
../../../nixos/roles/physical/desktop/niri
];
home-manager = {
users.${vars.user}.imports = [
../../../home-manager/common
../../../home-manager/roles/personal
../../../home-manager/roles/desktop/niri
];
};
networking.hostName = "crow";
networking.hostId = "0b83186c";
fileSystems."/home/${vars.user}/Games/Steam" = {
device = "/dev/disk/by-uuid/312227de-38a9-4475-9e46-fecc232f2002";
fsType = "ext4";
options = [
"users"
"nofail"
"noatime"
];
};
}