mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 18:46:13 +01:00
20 lines
356 B
Nix
20 lines
356 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.openssh.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
lightdm
|
|
home-manager
|
|
cryptsetup
|
|
];
|
|
|
|
imports = [
|
|
../modules/grub.nix
|
|
../modules/nix-flakes.nix
|
|
../modules/pulseaudio.nix
|
|
../modules/xserver.nix
|
|
../modules/xkb-caps-us-sk.nix
|
|
../modules/allow-unfree.nix
|
|
];
|
|
}
|