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 = [
./steam
];
@ -8,4 +8,8 @@
./home-manager.nix
]
else [];
environment.plasma6.excludePackages = with pkgs.kdePackages; [
pkgs.elisa
];
}

View file

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