dotfiles/nix/nixos/profiles/workstation.nix
2021-02-28 18:14:01 +01:00

28 lines
513 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib }:
{ config, ... }:
{
services.openssh.enable = true;
environment.systemPackages = with nixpkgs; [
home-manager
cryptsetup
nix-tree
ntfs3g
cifs-utils
];
services.xserver = {
displayManager = {
lightdm.enable = true;
};
};
imports = [
../modules/efi-grub.nix
../modules/nix-flakes.nix
../modules/pulseaudio.nix
../modules/xserver.nix
../modules/xkb-caps-us-sk.nix
];
}