updates config
This commit is contained in:
parent
8156c9bd85
commit
e72a052384
182 changed files with 47 additions and 10411 deletions
17
modules/hosts/dnsc-machine/default.nix
Normal file
17
modules/hosts/dnsc-machine/default.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue