29 lines
558 B
Nix
29 lines
558 B
Nix
{ inputs, config, ... }:
|
|
let
|
|
hostname = "dnsc-machine";
|
|
in
|
|
{
|
|
flake.nixosConfigurations.dnsc-machine = inputs.nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = with config.flake.modules.nixos; [
|
|
home-manager
|
|
base
|
|
shell
|
|
ssh
|
|
cli-tools
|
|
nix
|
|
nvidia-graphics
|
|
drawing-tablet
|
|
printing
|
|
desktop
|
|
terminal
|
|
gaming
|
|
|
|
{
|
|
imports = [ ./_hardware-configuration.nix ];
|
|
networking.hostName = hostname;
|
|
system.stateVersion = "24.11";
|
|
}
|
|
];
|
|
};
|
|
}
|