mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
fixed dir
This commit is contained in:
parent
2ffa9fb046
commit
21a64fd68d
6 changed files with 4 additions and 9 deletions
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
programs.home-manager.enable = true;
|
||||
programs.bash.shellAliases = {
|
||||
nixup = "sudo nixos-rebuild switch --flake ${config.user.nixosDir}/.#desktop";
|
||||
nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#desktop";
|
||||
};
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
programs.home-manager.enable = true;
|
||||
programs.bash.shellAliases = {
|
||||
nixup = "sudo nixos-rebuild switch --flake ${config.user.nixosDir}/.#server";
|
||||
nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#server";
|
||||
};
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
programs.home-manager.enable = true;
|
||||
programs.bash.shellAliases = {
|
||||
nixup = "sudo nixos-rebuild switch --flake ${config.user.nixosDir}/.#wsl";
|
||||
nixup = "sudo nixos-rebuild switch --flake /etc/nixos/.#wsl";
|
||||
};
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@ userConfigs = rec {
|
|||
name = "bryan";
|
||||
email = "bryan@ramos.codes";
|
||||
shell = pkgs.bash;
|
||||
nixosDir = /etc/nixos; # PATH to this repo
|
||||
|
||||
# Image name from ~Pictures/wallpapers directory
|
||||
wallpaper = "mountains.jpg";
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ in
|
|||
};
|
||||
merge = { tool = "vimdiff"; };
|
||||
safe = {
|
||||
directory = "${config.user.nixosDir}";
|
||||
directory = "/etc/nixos";
|
||||
};
|
||||
};
|
||||
ignores = [
|
||||
|
|
|
|||
|
|
@ -29,10 +29,6 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
programs.git.ignores = [
|
||||
".direnv"
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
DIRENV_LOG_FORMAT = " ";
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue