my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 347 B view raw
1{ lib, ... }: 2let 3 inherit (lib) mkEnableOption; 4in 5{ 6 options.garden.profiles = { 7 graphical.enable = mkEnableOption "Graphical interface"; 8 headless.enable = mkEnableOption "Headless"; 9 workstation.enable = mkEnableOption "Workstation"; 10 laptop.enable = mkEnableOption "Laptop"; 11 server.enable = mkEnableOption "Server"; 12 }; 13}