seperate out graphical apps

This commit is contained in:
2026-03-13 16:48:14 +01:00
parent 3186073c18
commit 401d01c746
3 changed files with 23 additions and 14 deletions

View File

@@ -0,0 +1,21 @@
{ config, lib, pkgs, home-manager, ... }:
{
imports = [home-manager.nixosModules.home-manager];
home-manager.users.shatteredmint = {
home.packages = with pkgs; [
thunderbird
firefox
lazygit
veracrypt
keepassxc
kdePackages.yakuake
cargo
zig
clang
nil
wl-clipboard
makemkv
];
};
}