forked from extern/nix-config
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:
parent
f7110b3e06
commit
d28c0ec15b
@ -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;
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
pulse.enable = true;
|
||||
|
||||
lowLatency.enable = true;
|
||||
# lowLatency.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user