-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix flatpak module using unrecognized repo * Add beekeeper studio to work packages * Fruitless attempts to make NVIDIA drivers behave * Update `flake.lock`
- Loading branch information
1 parent
9ad90e6
commit 0ffbaef
Showing
9 changed files
with
64 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
./docker.nix | ||
./flatpak.nix | ||
./gnome.nix | ||
./kde.nix | ||
./networkmanager.nix | ||
./nvidia.nix | ||
./printing.nix | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ pkgs, lib, config, ... }: | ||
let cfg = config.personal.kde; | ||
in { | ||
options.personal.kde = { enable = lib.mkEnableOption "kde configuration"; }; | ||
|
||
config = lib.mkIf cfg.enable { | ||
services.xserver.enable = true; | ||
services.displayManager.sddm.enable = true; | ||
services.displayManager.sddm.wayland.enable = true; | ||
services.desktopManager.plasma6.enable = true; | ||
|
||
programs.dconf.enable = true; | ||
|
||
personal.sound.enable = lib.mkDefault true; | ||
|
||
environment.systemPackages = with pkgs; [ | ||
kdePackages.discover | ||
kdePackages.plasma-vault | ||
kdePackages.krdc | ||
]; | ||
|
||
# environment.sessionVariables.NIXOS_OZONE_WL = "1"; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters