dotfiles/nixos/profiles/workstation.nix
2021-01-10 19:55:13 +01:00

27 lines
460 B
Nix

{ config, pkgs, ... }:
{
services.openssh.enable = true;
environment.systemPackages = with pkgs; [
home-manager
cryptsetup
ntfs3g
cifs-utils
];
services.xserver = {
displayManager = {
lightdm.enable = true;
};
};
imports = [
../modules/grub.nix
../modules/nix-flakes.nix
../modules/pulseaudio.nix
../modules/xserver.nix
../modules/xkb-caps-us-sk.nix
../modules/allow-unfree.nix
];
}