home config migration
This commit is contained in:
parent
64f4c4f5b0
commit
4bba4871b4
25 changed files with 1296 additions and 16 deletions
41
modules/system/misc/graphics.nix
Normal file
41
modules/system/misc/graphics.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ pkgs, ... }: {
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
extraPackages = [ pkgs.libva-vdpau-driver ];
|
||||
};
|
||||
|
||||
services = {
|
||||
xserver = {
|
||||
enable = true;
|
||||
xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
};
|
||||
pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
};
|
||||
gnome.gnome-keyring.enable = true;
|
||||
gvfs.enable = true;
|
||||
blueman.enable = true;
|
||||
pulseaudio.enable = false;
|
||||
};
|
||||
|
||||
fonts = {
|
||||
enableDefaultPackages = true;
|
||||
packages = with pkgs; [
|
||||
nerd-fonts.droid-sans-mono
|
||||
noto-fonts-cjk-sans
|
||||
noto-fonts
|
||||
font-awesome
|
||||
corefonts
|
||||
];
|
||||
};
|
||||
|
||||
programs.xfconf.enable = true;
|
||||
security.rtkit.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue