feat: reconfigure
This commit is contained in:
parent
00f3a285dd
commit
c71407281c
13 changed files with 252 additions and 120 deletions
6
profiles/graphical/nvidia.nix
Normal file
6
profiles/graphical/nvidia.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
|
||||
hardware.nvidia.modesetting.enable = true;
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
}
|
7
profiles/graphical/qtile.nix
Normal file
7
profiles/graphical/qtile.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
imports = [ ./xserver ];
|
||||
|
||||
services.xserver.windowManager.qtile.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [ xsecurelock ];
|
||||
}
|
15
profiles/graphical/xserver.nix
Normal file
15
profiles/graphical/xserver.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ pkgs, ... }: {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
layout = "us";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
xclip
|
||||
xdotool
|
||||
xorg.xwininfo
|
||||
xorg.xauth
|
||||
|
||||
blugon
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue