aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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
- ];
};
}