add home-manager

This commit is contained in:
Dennis Wuitz
2023-12-25 03:39:20 +01:00
parent c6c879ddb4
commit e08f011d28
7 changed files with 112 additions and 97 deletions

View File

@ -1,8 +1,5 @@
{ pkgs, lib, config }:
{ pkgs, lib, config, name, ... }:
import ../default.nix {
inherit pkgs lib config;
userName = "AmethystAndroid";
pubKeys = {
palatine-hill = "ed25516-AAAAAAA";
};
inherit pkgs lib config name;
pubKeys = [ "ed25516-AAAAAAA" ];
}

7
users/alice/home.nix Normal file
View File

@ -0,0 +1,7 @@
{ ... }:
{
programs = {
};
home.stateVersion = "23.11";
}