nixos-config/profiles/personal/configuration.nix

19 lines
631 B
Nix
Raw Normal View History

2023-04-23 02:12:52 +05:30
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ ... }:
2023-04-23 02:12:52 +05:30
{
imports =
2023-06-21 20:03:51 +05:30
[ ../work/configuration.nix # Personal is essentially work system + games
../../system/hardware-configuration.nix
../../system/app/gamemode.nix
2023-07-11 04:45:35 +05:30
../../system/app/steam.nix
2023-07-31 20:15:45 +05:30
../../system/app/prismlauncher.nix
../../system/security/doas.nix
../../system/security/gpg.nix
../../system/security/blocklist.nix
../../system/security/firewall.nix
2023-04-23 02:12:52 +05:30
];
}