sombrero: Move unar from system packages to home packages

This commit is contained in:
Alexander Heldt
2024-07-21 10:07:10 +02:00
parent a863bc78c8
commit 428e733946
2 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,6 @@
gnumake
mkpasswd
vim
unar
];
config-manager = {

View File

@@ -1,6 +1,5 @@
{ inputs, ... }:
{ inputs, pkgs, ... }:
{
imports = [ inputs.home-manager.nixosModules.home-manager ];
config = {
@@ -14,7 +13,9 @@
home.username = "alex";
home.homeDirectory = "/home/alex";
home.packages = [];
home.packages = [
pkgs.unar
];
home.stateVersion = "22.11";
};