mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-18 09:34:00 +05:30
Haven't updated these readme's in a long time..
This commit is contained in:
parent
44e854f32e
commit
b44aeb9150
15 changed files with 212 additions and 290 deletions
14
hosts/TEMPLATE/default.nix
Normal file
14
hosts/TEMPLATE/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./configuration.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
config = {
|
||||
home-manager.users = builtins.listToAttrs
|
||||
(map (user: { name = user; value =
|
||||
({ imports = [ ./home.nix ../../modules/user ]; });}) config.systemSettings.users);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue