dotfiles/nixos/profiles/workstation.nix

27 lines
460 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
services.openssh.enable = true;
environment.systemPackages = with pkgs; [
home-manager
cryptsetup
2021-01-10 19:55:13 +01:00
ntfs3g
cifs-utils
];
2020-12-29 17:34:49 +01:00
services.xserver = {
displayManager = {
2021-01-10 19:55:13 +01:00
lightdm.enable = true;
2020-12-29 17:34:49 +01:00
};
};
imports = [
../modules/grub.nix
../modules/nix-flakes.nix
../modules/pulseaudio.nix
../modules/xserver.nix
../modules/xkb-caps-us-sk.nix
../modules/allow-unfree.nix
];
}