feat/nix #3

Merged
Jaaj-San merged 59 commits from feat/nix into main 2024-09-20 22:35:47 +02:00
Showing only changes of commit a9a9eff3a3 - Show all commits

View file

@ -18,12 +18,16 @@
};
};
outputs = { self, nixpkgs, home-manager, hy3, ... }:
let
outputs = {
self,
nixpkgs,
home-manager,
hy3,
...
}: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
in {
homeConfigurations."culisg@im2ag" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
@ -41,6 +45,10 @@
alejandra
nil
];
shellHook = ''
export EDITOR=hx
'';
};
};
}