nixos/hosts/physical/crow/default.nix

42 lines
723 B
Nix
Raw Normal View History

2025-12-08 20:30:22 -05:00
{
vars,
inputs,
...
}:
{
imports = [
./hardware-configuration.nix
./system-configuration.nix
../default.nix
../../../nixos/roles/physical/desktop/common
2025-12-08 20:30:22 -05:00
../../../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";
2025-12-13 12:59:59 +00:00
fileSystems."/mnt/steam" = {
device = "/dev/disk/by-uuid/312227de-38a9-4475-9e46-fecc232f2002";
fsType = "ext4";
options = [
2025-12-13 13:11:26 +00:00
"defaults"
2025-12-13 12:59:59 +00:00
"users"
"nofail"
2025-12-13 13:11:26 +00:00
"noatime"
"uid=1000"
"gid=100"
"mode=775"
2025-12-13 12:59:59 +00:00
];
};
2025-12-08 20:30:22 -05:00
}