Cleanup
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
{ lib, config, ... }: {
|
||||
{ lib, config, pkgs, ... }: {
|
||||
|
||||
#environment.sessionVariables.SOPS_AGE_KEY_FILE = keyFilePath;
|
||||
systemd.user.startServices = "sd-switch";
|
||||
systemd.user.startServices = lib.mkIf pkgs.stdenv.isLinux "sd-switch";
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home = {
|
||||
username = "${config.usercfg.username}";
|
||||
homeDirectory = "/home/${config.usercfg.username}";
|
||||
homeDirectory =
|
||||
if pkgs.stdenv.isDarwin then
|
||||
"/Users/${config.usercfg.username}"
|
||||
else
|
||||
"/home/${config.usercfg.username}";
|
||||
|
||||
stateVersion = "26.05";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user