nixos: backend server
This commit is contained in:
parent
83be5595ba
commit
643ecb1e14
24 changed files with 542 additions and 5 deletions
13
nixos/configuration.nix
Normal file
13
nixos/configuration.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
./locale.nix
|
||||
./network.nix
|
||||
./packages.nix
|
||||
./registry.nix
|
||||
./users.nix
|
||||
] ++ (if (import ../config-var.nix).efi then [ ./efi.nix ] else [ ./bios.nix ]);
|
||||
|
||||
system.stateVersion = "22.05";
|
||||
}
|
Reference in a new issue