mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
feat: minor improvements (add vim, $FLAKE)
This commit is contained in:
parent
61137e106f
commit
95339bd6a7
3 changed files with 6 additions and 4 deletions
|
|
@ -7287,7 +7287,7 @@ This section sets up all the imports that are used in the home-manager section.
|
|||
Again, we adapt =nix= to our needs, enable the home-manager command for non-NixOS machines (NixOS machines are using it as a module) and setting user information that I always keep the same.
|
||||
|
||||
#+begin_src nix :tangle profiles/common/home/settings.nix
|
||||
{ lib, config, pkgs, ... }:
|
||||
{ self, lib, config, pkgs, ... }:
|
||||
{
|
||||
nix = {
|
||||
package = lib.mkDefault pkgs.nix;
|
||||
|
|
@ -7309,7 +7309,7 @@ This section sets up all the imports that are used in the home-manager section.
|
|||
stateVersion = lib.mkDefault "23.05";
|
||||
keyboard.layout = "us";
|
||||
sessionVariables = {
|
||||
FLAKE = "$HOME/.dotfiles";
|
||||
FLAKE = "${self}";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -7366,6 +7366,7 @@ This holds packages that I can use as provided, or with small modifications (as
|
|||
hyprpicker # color picker
|
||||
findutils
|
||||
units
|
||||
vim
|
||||
|
||||
# nix
|
||||
alejandra
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
hyprpicker # color picker
|
||||
findutils
|
||||
units
|
||||
vim
|
||||
|
||||
# nix
|
||||
alejandra
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
{ self, lib, config, pkgs, ... }:
|
||||
{
|
||||
nix = {
|
||||
package = lib.mkDefault pkgs.nix;
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
stateVersion = lib.mkDefault "23.05";
|
||||
keyboard.layout = "us";
|
||||
sessionVariables = {
|
||||
FLAKE = "$HOME/.dotfiles";
|
||||
FLAKE = "${self}";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue