Add blank home-manager config

This commit is contained in:
ItsDrike 2024-03-23 23:06:58 +01:00
parent da5262c60d
commit e2764cb4cb
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
12 changed files with 98 additions and 4 deletions

View file

@ -1,12 +1,15 @@
{self, inputs, ...}: let
{ self, inputs, ... }:
let
inherit (inputs.nixpkgs) lib;
# A list of shared modules that ALL systems need
shared = [
../system
../home
../options
];
in {
in
{
vboxnix = lib.nixosSystem {
system = "x86_64-linux";
modules = [

View file

@ -27,5 +27,9 @@
virtual-machine = true;
cpu.type = "amd";
};
home-manager = {
enabled = true;
stateVersion = "23.11";
};
};
}