feat: use user and theme attributes

This commit is contained in:
Michael Mandl 2024-07-10 08:17:30 +02:00
parent 428b91c3d5
commit 27b66ec830
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
6 changed files with 19 additions and 15 deletions

View file

@ -1,8 +1,8 @@
{ pkgs, username, ... }:
{ pkgs, user, ... }:
{
home.username = "${username}";
home.homeDirectory = "/home/${username}";
home.username = user;
home.homeDirectory = "/home/${user}";
home.stateVersion = "24.05"; # Please read the comment before changing.