create seal-off script

This commit is contained in:
Phillip Klein 2024-10-10 15:52:01 +02:00
parent 024a108c37
commit 60f681a33e
2 changed files with 11 additions and 3 deletions

3
README
View File

@ -4,6 +4,5 @@
* Copy device database to ~/artiq
* Set timezone and kb layout
* Comment out openssh.authorizedKeys.keys
* sudo nixos-rebuild boot
* sudo nix-collect-garbage -d
* sudo seal-off
* history clear

View File

@ -1,6 +1,14 @@
{ config, pkgs, artiq, ... }:
{
let
sealOff = pkgs.writeShellScriptBin "seal-off"
''
set -e
nixos-rebuild boot
nix-collect-garbage -d
'';
in {
imports =
[
./hardware-configuration.nix
@ -36,6 +44,7 @@
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
sealOff
wget
vim
gitAndTools.gitFull