mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2026-05-20 20:12:06 +01:00
Improved justfile script env caching
This commit is contained in:
@@ -56,6 +56,17 @@
|
||||
avatar = "/var/lib/AccountsService/icons/cianh";
|
||||
};
|
||||
in {
|
||||
# A temporary devshell for running system management functions
|
||||
devShells."x86_64-linux".default = let
|
||||
pkgs = import nixpkgs {system = "x86_64-linux";};
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = [
|
||||
pkgs.babashka
|
||||
(pkgs.python3.withPackages (ps: with ps; [typer rich]))
|
||||
];
|
||||
};
|
||||
|
||||
# NixOS configuration entrypoint
|
||||
# Available through 'nixos-rebuild --flake .#your-hostname'
|
||||
nixosConfigurations = {
|
||||
|
||||
Reference in New Issue
Block a user