aboutsummaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2026-01-25 12:00:24 -0800
committerFranck Cuny <franck@fcuny.net>2026-01-25 12:00:24 -0800
commit20362e9272c4a02d304eccd0c1ca645b4cebfbe6 (patch)
tree091b7da038f2f426113b51f0821b3db673e82457 /machines
parentunlock the disk using the host's TPM (diff)
downloadinfra-20362e9272c4a02d304eccd0c1ca645b4cebfbe6.tar.gz
bump the state version for framebox
Diffstat (limited to 'machines')
-rw-r--r--machines/framebox.nix9
1 files changed, 1 insertions, 8 deletions
diff --git a/machines/framebox.nix b/machines/framebox.nix
index 34ef32b..57b9c3b 100644
--- a/machines/framebox.nix
+++ b/machines/framebox.nix
@@ -2,7 +2,6 @@
adminUser,
lib,
config,
- pkgs,
...
}:
{
@@ -81,18 +80,12 @@
users.users.${adminUser.name}.extraGroups = [ "cdrom" ];
- system.stateVersion = "23.11";
+ system.stateVersion = "25.11";
home-manager.users.${adminUser.name} = {
home.homeDirectory = "/home/${adminUser.name}";
imports = [
../home/profiles/minimal.nix
];
- home.packages = with pkgs; [
- ffmpeg
- imagemagick
- makemkv
- mkvtoolnix-cli
- ];
};
}