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