37 lines
676 B
Nix
37 lines
676 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";
|
|
|
|
fileSystems."/home/${vars.user}/Games/Steam" = {
|
|
device = "/dev/disk/by-uuid/312227de-38a9-4475-9e46-fecc232f2002";
|
|
fsType = "ext4";
|
|
|
|
options = [
|
|
"users"
|
|
"nofail"
|
|
"noatime"
|
|
];
|
|
};
|
|
}
|