mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 07:00:41 +00:00
Add blank home-manager config
This commit is contained in:
parent
da5262c60d
commit
e2764cb4cb
12 changed files with 98 additions and 4 deletions
|
@ -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 = [
|
||||
|
|
|
@ -27,5 +27,9 @@
|
|||
virtual-machine = true;
|
||||
cpu.type = "amd";
|
||||
};
|
||||
home-manager = {
|
||||
enabled = true;
|
||||
stateVersion = "23.11";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue