install todo app on laptop

This commit is contained in:
wi11-holdsworth 2025-08-05 13:00:45 +10:00
parent dc7d6a4ee2
commit 9de7d53d9c

View file

@ -14,8 +14,13 @@ in
displayManager.gdm.enable = true; displayManager.gdm.enable = true;
}; };
environment = {
systemPackages = with pkgs; [
endeavour # todo app
];
# https://discourse.nixos.org/t/howto-disable-most-gnome-default-applications-and-what-they-are/13505 # https://discourse.nixos.org/t/howto-disable-most-gnome-default-applications-and-what-they-are/13505
environment.gnome.excludePackages = with pkgs; [ gnome.excludePackages = with pkgs; [
# baobab # disk usage analyzer # baobab # disk usage analyzer
# cheese # photo booth # cheese # photo booth
# eog # image viewer # eog # image viewer
@ -48,6 +53,7 @@ in
gnome-connections gnome-connections
]; ];
}; };
};
options.${feature}.enable = lib.mkEnableOption "enables ${feature}"; options.${feature}.enable = lib.mkEnableOption "enables ${feature}";
} }