mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Fixed typos, added autoinstall notes, reworked homelab config
This commit is contained in:
parent
4015df2e40
commit
16b832d5f0
8 changed files with 145 additions and 95 deletions
3
profiles/worklab/README.org
Normal file
3
profiles/worklab/README.org
Normal file
|
@ -0,0 +1,3 @@
|
|||
#+title: Worklab Template
|
||||
|
||||
This is literally just my homelab configuration, but setup to work with the ssh keys on my work computer. Used for small servers at work.
|
10
profiles/worklab/configuration.nix
Normal file
10
profiles/worklab/configuration.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ userSettings, ... }:
|
||||
|
||||
{
|
||||
imports = [ ../homelab/base.nix
|
||||
( import ../../system/security/sshd.nix {
|
||||
# TODO add public ssh key for worklab
|
||||
authorizedKeys = [ ];
|
||||
inherit userSettings; })
|
||||
];
|
||||
}
|
5
profiles/worklab/home.nix
Normal file
5
profiles/worklab/home.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
imports = [ ../homelab/home.nix ];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue