mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
Aly Raffauf
d86e4c5be1
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
* theme: don't set kde qt theme if kde is enabled * home: add kde option * nixos: add kde module * hyprland: set kde theme variables * desktop: set libadwaita headerbar buttons for kde * greetd: tuigreet -> regreet
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./greetd
|
|
./gnome
|
|
./hyprland
|
|
./kde
|
|
./sway
|
|
./waylandComp.nix
|
|
];
|
|
|
|
config =
|
|
lib.mkIf (
|
|
config.ar.desktop.gnome.enable
|
|
|| config.ar.desktop.hyprland.enable
|
|
|| config.ar.desktop.kde.enable
|
|
|| config.ar.desktop.steam.enable
|
|
|| config.ar.desktop.sway.enable
|
|
) {
|
|
boot = {
|
|
consoleLogLevel = 0;
|
|
initrd.verbose = false;
|
|
plymouth.enable = true;
|
|
};
|
|
|
|
environment = {
|
|
sessionVariables.NIXOS_OZONE_WL = "1";
|
|
};
|
|
|
|
hardware.logitech.wireless = {
|
|
enable = true;
|
|
enableGraphical = true;
|
|
};
|
|
|
|
programs.system-config-printer.enable = true;
|
|
|
|
services = {
|
|
gnome.gnome-keyring.enable = true;
|
|
gvfs.enable = true; # Mount, trash, etc.
|
|
|
|
libinput.enable = true;
|
|
|
|
pipewire = {
|
|
enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
pulse.enable = true;
|
|
};
|
|
|
|
printing.enable = true;
|
|
system-config-printer.enable = true;
|
|
|
|
xserver = {
|
|
enable = true;
|
|
excludePackages = with pkgs; [xterm];
|
|
};
|
|
};
|
|
};
|
|
}
|