Remove references to username in home-manager config
This commit is contained in:
parent
089436e641
commit
fa4cfc0a25
3 changed files with 14 additions and 9 deletions
|
@ -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"];
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
home = {
|
||||
username = "pim";
|
||||
homeDirectory = "/home/pim";
|
||||
stateVersion = "24.05";
|
||||
};
|
||||
|
||||
home.packages = with pkgs.unstable; [
|
||||
devenv
|
||||
vlc
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue