Migrated from import based to config based
This commit is contained in:
@@ -2,31 +2,39 @@
|
||||
|
||||
{
|
||||
imports = [
|
||||
# Import hardware configuration
|
||||
./hardware-configuration.nix
|
||||
|
||||
# GUI
|
||||
../../modules/system/gui/hyprland.nix
|
||||
../../modules/system/gui/cosmic.nix
|
||||
../../modules/system/gui/cosmic-greeter.nix
|
||||
../../modules/system/gui/steam.nix
|
||||
../../modules/system/gui/thunar.nix
|
||||
|
||||
# CLI
|
||||
../../modules/system/cli/common.nix
|
||||
../../modules/system/cli/docker.nix
|
||||
|
||||
# Hardware
|
||||
# ../../modules/system/hardware/amd.nix
|
||||
../../modules/system/hardware/bluetooth.nix
|
||||
../../modules/system/hardware/firewall.nix
|
||||
../../modules/system/hardware/garbage-collection.nix
|
||||
../../modules/system/hardware/laptop.nix
|
||||
../../modules/system/hardware/locale.nix
|
||||
../../modules/system/hardware/printing.nix
|
||||
../../modules/system/hardware/fprint.nix
|
||||
../../modules/system/hardware/virt.nix
|
||||
# Import modules
|
||||
../../modules/system/default.nix
|
||||
];
|
||||
|
||||
settings = {
|
||||
display-manager = "cosmic-greeter";
|
||||
desktop-environments = {
|
||||
cosmic.enable = true;
|
||||
hyprland.enable = true;
|
||||
};
|
||||
applications = {
|
||||
common.enable = true;
|
||||
steam.enable = true;
|
||||
thunar.enable = true;
|
||||
};
|
||||
services = {
|
||||
docker.enable = true;
|
||||
quickemu.enable = true;
|
||||
sunshine.enable = false;
|
||||
garbage-collection.enable = true;
|
||||
};
|
||||
hardware = {
|
||||
fprint.enable = true;
|
||||
printing.enable = true;
|
||||
bluetooth.enable = true;
|
||||
firewall.enable = true;
|
||||
locale.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
nix.settings = {
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
|
Reference in New Issue
Block a user