my over complex system configurations
dotfiles.isabelroses.com/
nixos
nix
flake
dotfiles
linux
1{
2 lib,
3 pkgs,
4 config,
5 ...
6}:
7let
8 inherit (lib) mkIf;
9in
10{
11 config = mkIf config.garden.profiles.graphical.enable {
12 programs = {
13 # we need dconf to interact with gtk
14 dconf.enable = true;
15
16 # gnome's keyring manager
17 seahorse.enable = true;
18 };
19
20 garden.packages = {
21 inherit (pkgs) cosmic-icons;
22 };
23 };
24}