demo vm
Some checks failed
Lint / lint (push) Failing after 1m36s
Plex Update / update (push) Successful in 1m53s

This commit is contained in:
Vivian 2023-12-29 17:35:24 +01:00
parent 71c5166390
commit 592537fb63
5 changed files with 175 additions and 64 deletions

View file

@ -2,10 +2,11 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ pkgs, ... }: {
{ pkgs, inputs, ... }: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./vms.nix
];
programs.nix-ld.enable = true;
@ -27,10 +28,10 @@
# Additional packages
environment.systemPackages = with pkgs; [ vault ];
networking.useNetworkd = true;
programs.gnupg.agent = {
enable = true;
pinentryFlavor = "curses";
};
home-manager.users.vivian = import ./home.nix;
}