···11# Do not modify this file! It was generated by ‘nixos-generate-config’
22# and may be overwritten by future invocations. Please make changes
33# to /etc/nixos/configuration.nix instead.
44-{ config, lib, pkgs, modulesPath, ... }:
44+{ config, lib, modulesPath, ... }:
55{
66 imports =
77 [ (modulesPath + "/installer/scan/not-detected.nix")
-27
modules/common/suites/base.nix
···11-{ config, pkgs, lib, ... }:
22-let
33- cfg = config.asgard.suites.base;
44-in
55-{
66- options.asgard.suites.base = {
77- enable = lib.mkEnableOption "Enable the base suite.";
88- };
99-1010- # collection of opiniated package to use as a base
1111- config = lib.mkIf cfg.enable {
1212- environment.systemPackages = with pkgs; [
1313- librewolf
1414- obsidian
1515- spotify
1616- ] ++ lib.optionals pkgs.stdenv.isLinux [
1717- discord
1818- ghostty
1919- ];
2020-2121- # Only define homebrew.casks if on Darwin
2222- # homebrew.casks = lib.mkIf pkgs.stdenv.isDarwin [
2323- # "discord"
2424- # "ghostty"
2525- # ];
2626- };
2727-}