mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-12-03 05:26:18 +01:00
30 lines
576 B
Nix
30 lines
576 B
Nix
inputs:
|
|
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, rlib }@ rpkgs:
|
|
{ config, pkgs, ... }:
|
|
{
|
|
services.openssh.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
home-manager
|
|
cryptsetup
|
|
nix-tree
|
|
ntfs3g
|
|
cifs-utils
|
|
];
|
|
|
|
services.xserver = {
|
|
displayManager = {
|
|
lightdm.enable = true;
|
|
};
|
|
};
|
|
|
|
imports = rlib.callModules rpkgs [
|
|
../modules/allow-unfree.nix
|
|
../modules/efi-grub.nix
|
|
../modules/nix-flakes.nix
|
|
../modules/pulseaudio.nix
|
|
../modules/xserver.nix
|
|
../modules/xkb-caps-us-sk.nix
|
|
];
|
|
}
|