DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

d845c2f4bd64c535f28837b247ab939a540f5867 — Jonni Liljamo 2 months ago ba8b726
feat: nvim as default editor on laptop and desktop
M systems/profiles/desktop/default.nix => systems/profiles/desktop/default.nix +2 -0
@@ 13,6 13,8 @@ inputs @ {

    ../../../modules
    ../../../roles

    ./desktop.nix
  ];
  specialArgs = {
    inherit inputs;

A systems/profiles/desktop/desktop.nix => systems/profiles/desktop/desktop.nix +3 -0
@@ 0,0 1,3 @@
{
  environment.variables.EDITOR = "nvim";
}

M systems/profiles/laptop/laptop.nix => systems/profiles/laptop/laptop.nix +1 -0
@@ 1,3 1,4 @@
{
  environment.variables.EDITOR = "nvim";
  programs.light.enable = true;
}