nix-config/home/ludwig.nix

28 lines
463 B
Nix
Raw Permalink Normal View History

2024-02-02 19:59:41 +01:00
{
2024-05-24 14:06:43 +02:00
pkgs,
2024-02-02 19:59:41 +01:00
inputs,
outputs,
...
}: let
in {
imports = [
./global
./features/desktop/awesome
2024-05-24 14:06:43 +02:00
./features/desktop/gnome
2024-02-02 19:59:41 +01:00
./features/coding
inputs.nix-colors.homeManagerModules.default
];
2024-05-24 14:06:43 +02:00
home.packages = with pkgs; [nextcloud-client];
2024-02-02 19:59:41 +01:00
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
nixpkgs = {
config = {
permittedInsecurePackages = [
"electron-25.9.0"
2024-05-24 14:06:15 +02:00
"nix-2.15.3"
2024-02-02 19:59:41 +01:00
];
};
};
}