system/hosts/asus-gl553vd/configuration.nix

29 lines
660 B
Nix
Raw Normal View History

2024-04-22 23:43:16 +03:00
{ ... }:
2024-04-16 02:51:46 +03:00
{
imports = [
./hardware-configuration
./configs
./users
];
################################################################################
2024-04-22 23:43:16 +03:00
# Window manager
2024-04-16 02:51:46 +03:00
################################################################################
2024-04-22 23:43:16 +03:00
local.window-manager = {
xmonad.enable = false;
hyprland.enable = true;
2024-04-16 02:51:46 +03:00
};
################################################################################
# Services
################################################################################
# Enable the Docker
2024-04-22 23:43:16 +03:00
# virtualisation.docker.enable = true;
2024-04-16 02:51:46 +03:00
# Torrent
# services.transmission.enable = true;
}