nixos-configs/hosts/nixos-desktop/default.nix

25 lines
466 B
Nix
Raw Normal View History

2023-03-20 22:35:11 +01:00
{ pkgs, config, lib, ... }:
{
imports = [
./hardware-configuration.nix
];
2023-03-21 10:37:27 +01:00
modules = {
desktop = {
xmonad.enable = true;
neovim.enable = true;
alacritty.enable = true;
zsh.enable = true;
vscode.enable = true;
dunst.enable = true;
htop.enable = true;
mpd.enable = true;
};
};
2023-03-20 22:35:11 +01:00
# Allow to externally control MPD
networking.firewall.allowedTCPPorts = [ 6600 ];
2023-03-21 10:37:27 +01:00
system.stateVersion = "20.09";
2023-03-20 22:35:11 +01:00
}