add nixos configuration for Cape
This commit is contained in:
parent
30e8310755
commit
b4777b66f2
20 changed files with 310 additions and 13 deletions
17
flake.nix
17
flake.nix
|
|
@ -202,12 +202,17 @@
|
|||
};
|
||||
in
|
||||
{
|
||||
homeConfigurations = nixpkgs.lib.foldr (a: b: a // b) { } (
|
||||
map (hostName: mkHomeConfig { inherit hostName; }) [
|
||||
"Tytonidae"
|
||||
"Akun"
|
||||
]
|
||||
);
|
||||
homeConfigurations =
|
||||
nixpkgs.lib.foldr (a: b: a // b) { } (
|
||||
map (hostName: mkHomeConfig { inherit hostName; }) [
|
||||
"Tytonidae"
|
||||
"Akun"
|
||||
]
|
||||
)
|
||||
// mkHomeConfig {
|
||||
hostName = "Cape";
|
||||
unixName = "alice";
|
||||
};
|
||||
homeManagerModules =
|
||||
{
|
||||
default = import ./home/modules;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue