Compare commits

...

2 commits

Author SHA1 Message Date
c4bbf46dab remove elisa 2024-11-09 08:40:38 +01:00
1741561394 add kontact 2024-11-09 08:39:45 +01:00
2 changed files with 9 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{config, ...}: { {config, pkgs, ...}: {
imports = [ imports = [
./steam ./steam
]; ];
@ -8,4 +8,8 @@
./home-manager.nix ./home-manager.nix
] ]
else []; else [];
environment.plasma6.excludePackages = with pkgs.kdePackages; [
pkgs.elisa
];
} }

View file

@ -1,4 +1,4 @@
_: { {pkgs, ...}: {
imports = [ imports = [
./firefox ./firefox
./password-manager.nix ./password-manager.nix
@ -7,4 +7,7 @@ _: {
./ims.nix ./ims.nix
./audacious.nix ./audacious.nix
]; ];
home.packages = with pkgs; [
kdePackages.kontact
];
} }