Moving more stuff into modules
This commit is contained in:
parent
e24d7c1790
commit
4954008d13
8 changed files with 306 additions and 525 deletions
6
modules/opengl.nix
Normal file
6
modules/opengl.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }: {
|
||||
hardware.opengl = {
|
||||
enable = true;
|
||||
driSupport = true;
|
||||
};
|
||||
}
|
|
@ -1,5 +1,4 @@
|
|||
{ ... }: {
|
||||
# Enable sound.
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
|
4
modules/ssh.nix
Normal file
4
modules/ssh.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{ ... }:{
|
||||
services.openssh.enable = true;
|
||||
programs.ssh.startAgent = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue