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-06-23 01:23:10 +05:30
|
|
|
|
{ config, lib, pkgs, blocklist-hosts, username, name, hostname, timezone, locale, wm, theme, ... }:
|
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
|
2023-06-21 08:38:25 +05:30
|
|
|
|
#../../system/hardware/openrgb.nix
|
|
|
|
|
../../system/app/gamemode.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
|
|
|
|
];
|
|
|
|
|
}
|