mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 22:02:25 +01:00
refactor base system
This commit is contained in:
12
os/system/base.nix
Normal file
12
os/system/base.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs, ... }: {
|
||||
imports = [
|
||||
./boot.nix
|
||||
./security.nix
|
||||
./i18n.nix
|
||||
./network.nix
|
||||
./sound.nix
|
||||
./xserver.nix
|
||||
./virtualisation.nix
|
||||
./packages.nix
|
||||
];
|
||||
}
|
||||
@@ -26,8 +26,6 @@
|
||||
gcc
|
||||
unzip
|
||||
wget
|
||||
plasma5Packages.bismuth
|
||||
kdeconnect
|
||||
firefox
|
||||
thunderbird
|
||||
remmina
|
||||
|
||||
4
os/system/security.nix
Normal file
4
os/system/security.nix
Normal file
@@ -0,0 +1,4 @@
|
||||
{ pkgs, ... }: {
|
||||
security.polkit.enable = true;
|
||||
security.rtkit.enable = true;
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
{ pkgs, ... }: {
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
|
||||
Reference in New Issue
Block a user