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

@ -90,21 +90,13 @@
};
};
home = {
username = "pim";
homeDirectory = "/home/pim";
stateVersion = "23.05";
};
programs = {
home-manager.enable = true;
bat.enable = true;
git.delta = {
enable = true;
options = {
syntax-theme = "gruvbox-dark";
};
options.syntax-theme = "gruvbox-dark";
};
fzf = {
@ -114,6 +106,7 @@
alacritty = {
enable = true;
settings.shell = {
program = lib.getExe config.programs.tmux.package;
args = ["attach"];

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";