SHELL: WORKS NOW!!!!!!!!!!!!!!!!!!!!!

This commit is contained in:
Charlie Root 2024-11-02 11:28:08 +01:00
commit 5082f7dc40
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
6 changed files with 32 additions and 3 deletions

View file

@ -9,7 +9,12 @@
devShells.x86_64-linux.default = pkgs.callPackage ./shell.nix {};
formatter.x86_64-linux = pkgs.alejandra;
packages.x86_64-linux= user.packages;
packages.x86_64-linux = user.packages;
apps.x86_64-linux.default = {
type = "app";
program = "${user.packages.fish}/bin/fish";
};
nixosModules = {
user = user.module;
shell = import ./modules/shell {inherit pkgs;};