Add multiple hosts & restructure things

This commit is contained in:
2024-01-30 02:51:16 +00:00
parent f5f1a2b69c
commit 5e5508ec84
37 changed files with 596 additions and 510 deletions

View File

@@ -1,10 +1,12 @@
{ pkgs, lib, ... }: {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"discord"
];
{ pkgs, lib, config, ... }: {
config = {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"discord"
];
home.packages = [
pkgs.discord
];
home.packages = [
pkgs.discord
];
}
}