This commit is contained in:
Emmet 2025-10-26 11:17:06 -05:00
parent 98b74c560c
commit da4e23a0d9
48 changed files with 71 additions and 3897 deletions

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ pkgs, ... }:
{
config = {

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ config, ... }:
{
imports = [
@ -8,7 +8,7 @@
config = {
home-manager.users = builtins.listToAttrs
(map (user: { name = user; value =
({ imports = [ ./home.nix ../../modules/user ]; });}) config.systemSettings.users);
(map (user: { name = user; value =
{ imports = [ ./home.nix ../../modules/user ]; };}) config.systemSettings.users);
};
}

View file

@ -1,7 +1,7 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ config, lib, modulesPath, ... }:
{
imports =