Remove references to username in home-manager config

This commit is contained in:
Pim Kunis 2024-11-21 20:52:07 +01:00
parent 089436e641
commit fa4cfc0a25
3 changed files with 14 additions and 9 deletions

View file

@ -1,4 +1,10 @@
{pkgs, ...}: {
home = {
username = "pim";
homeDirectory = "/home/pim";
stateVersion = "24.05";
};
home.packages = with pkgs.unstable; [
devenv
vlc

View file

@ -15,6 +15,12 @@
programs.chromium.enable = true;
home = {
username = "pim";
homeDirectory = "/home/pim";
stateVersion = "23.05";
};
sops = {
defaultSopsFile = ./home.sops.yaml;
age.keyFile = "${config.xdg.configHome}/sops/age/keys.txt";