Implement profile

This commit is contained in:
2026-02-27 16:05:00 +01:00
parent 52344e28b1
commit 6eb53c661a
7 changed files with 46 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
{ config, pkgs, lib, ... }:
let
profile = import ./profile.nix;
in
{
@@ -11,7 +11,7 @@ in
./system-environment/config.nix
];
users.users.nichkara = {
users.users.${profile.username} = {
isNormalUser = true;
description = "Nina Chloé Kassandra";
extraGroups = [ "networkmanager" "wheel" "docker" "scanner" "lp"];
@@ -21,7 +21,7 @@ in
home-manager.backupFileExtension = "bck.lck";
home-manager.users.nichkara = { pkgs, ... }: {
home-manager.users.${profile.username} = { pkgs, ... }: {
home.stateVersion = "25.11";
programs.git = {
enable = true;