1
0
Fork 0

Fix leisure mode

This commit is contained in:
Malte 2022-12-12 13:24:59 +01:00
parent 8459b025fb
commit 2b07de73df
2 changed files with 3 additions and 5 deletions

View file

@ -13,10 +13,10 @@ let
"youtube.*"
"*.element.io"
"twitter.com"
"chaos.social"
]
++ newsPages;
newsPages = [
"chaos.social"
"zeit.de"
"heise.de"
"spiegel.de"
@ -76,6 +76,7 @@ let
./roles/wallpaper.nix
./roles/zettelkasten.nix
./roles/kitty.nix
./roles/leisure.nix
];
orgaExtra = [
./roles/mail-client.nix
@ -110,7 +111,6 @@ let
++ orgaExtra
++ [
./roles/chat.nix
./roles/leisure.nix
(blockServer newsPages)
]
);
@ -120,7 +120,6 @@ let
++ [
./roles/games.nix
./roles/chat.nix
./roles/leisure.nix
(blockServer newsPages)
]
);
@ -130,7 +129,6 @@ let
++ [
./roles/games.nix
./roles/chat.nix
./roles/leisure.nix
(blockServer [])
]
);

View file

@ -107,6 +107,6 @@ in {
};
};
home = {
packages = builtins.attrValues (commands // {inherit (pkgs) tut;});
packages = builtins.attrValues commands;
};
}