Rename and redescript some options, continue reducing my flake to dust

This commit is contained in:
Bun 2025-04-30 05:08:18 -04:00
parent 7976a8c9ec
commit 912fe5d454
10 changed files with 23 additions and 22 deletions

View file

@ -11,11 +11,11 @@
];
options.home = with lib; {
desktop.enable = mkEnableOption "Enable desktop programs and services.";
gaming.enable = mkEnableOption "Enable gaming apps and programs";
production.enable = mkEnableOption "Enable apps for visual productivity";
remote-desktop.enable = mkEnableOption "Enable apps for visual productivity";
school.enable = mkEnableOption "Enable apps for visual productivity";
desktop.enable = mkEnableOption "Desktop programs and services";
gaming.enable = mkEnableOption "Gaming apps and programs";
production.enable = mkEnableOption "Apps for visual productivity";
remote-desktop.enable = mkEnableOption "Apps for remote desktop";
school.enable = mkEnableOption "Apps for school and college";
};
config.home.stateVersion = "24.11";

View file

@ -4,7 +4,7 @@
# NixOS
nhs = "nh os switch";
nixclean = "nix store gc; nix store optimise";
nixpurge = "doas nix-collect-garbage --delete-old";
nixpurge = "sudo nix-collect-garbage --delete-old";
# Shortcuts
ff = "clear && fastfetch";

View file

@ -1,11 +1,11 @@
{ config, ... }:
{
gtk.gtk3.bookmarks = [
"file:///home/${config.home.username}/Keepers"
"file:///home/${config.home.username}/Downloads"
"file:///home/${config.home.username}/Documents"
"file:///home/${config.home.username}/Videos"
"file:///home/${config.home.username}/Pictures/Screenshots"
"file://${config.home.homeDirectory}/Keepers"
"file://${config.home.homeDirectory}/Downloads"
"file://${config.home.homeDirectory}/Documents"
"file://${config.home.homeDirectory}/Videos"
"file://${config.home.homeDirectory}/Pictures/Screenshots"
"file:///etc/nixos"
];
}