Files
nixos-config/hosts/altair/system.nix
2025-11-29 22:51:38 +01:00

14 lines
232 B
Nix

{ config, ... }:
{
imports = [
../../modules/nixos/desktop.nix
./hardware-configuration.nix
./variables.nix
];
home-manager.users."${config.var.username}" = import ./home.nix;
system.stateVersion = "24.05";
}