diff options
Diffstat (limited to 'machines')
-rw-r--r-- | machines/t14/configuration.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/machines/t14/configuration.nix b/machines/t14/configuration.nix index 07fe3fc..7e7bff1 100644 --- a/machines/t14/configuration.nix +++ b/machines/t14/configuration.nix @@ -1,6 +1,7 @@ { config, pkgs, ... }: - -{ +let + rebuild = pkgs.writeShellScriptBin "rebuild" (builtins.readFile ../../rebuild/rebuild.sh); +in { imports = [ # Include the results of the hardware scan. ../base.nix @@ -47,6 +48,7 @@ environment.systemPackages = with pkgs; [ # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # wget + rebuild ]; # Some programs need SUID wrappers, can be configured further or are |