updates config

This commit is contained in:
Dennis Schoepf 2026-03-03 21:51:59 +01:00
parent 8156c9bd85
commit e72a052384
182 changed files with 47 additions and 10411 deletions

View file

@ -0,0 +1,17 @@
{ 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; [
base
{
imports = [ ./_hardware-configuration.nix ];
networking.hostName = hostname;
system.stateVersion = "24.11";
}
];
};
}