meta: Make networks usable

This was a change to make networks somewhat usable, and it works to a
good extent, however I ultimately decided against using networks due to
their missing flake support.
This commit is contained in:
Donovan Glover 2023-06-18 10:38:11 -04:00
parent f7110b3e06
commit d28c0ec15b
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
3 changed files with 14 additions and 4 deletions

View File

@ -20,7 +20,7 @@
ibus.engines = with pkgs.ibus-engines; [ mozc ];
};
services.gnome.core-utilities.enable = false;
# services.gnome.core-utilities.enable = false;
environment.gnome.excludePackages = [ pkgs.gnome-tour ];
hardware.pulseaudio.enable = false;

View File

@ -9,7 +9,7 @@
pulse.enable = true;
lowLatency.enable = true;
# lowLatency.enable = true;
};
environment.systemPackages = with pkgs; [

View File

@ -1,16 +1,26 @@
{
plasma = {
plasma = { pkgs, ... }: {
imports = [
../modules/virtualization.nix
../modules/user.nix
../modules/plasma.nix
../modules/pipewire.nix
];
environment.systemPackages = with pkgs; [
kitty
librewolf
];
};
gnome = {
gnome = { pkgs, ... }: {
imports = [
../modules/virtualization.nix
../modules/user.nix
../modules/gnome.nix
../modules/pipewire.nix
];
environment.systemPackages = with pkgs; [
kitty
librewolf
];
};
}