added nvidia and plasma-manage
This commit is contained in:
parent
5b3358114a
commit
f7527f57e7
3 changed files with 23 additions and 1 deletions
|
@ -19,7 +19,9 @@ in
|
|||
config = lib.mkIf cfg.enable {
|
||||
programs.plasma = {
|
||||
enable = true;
|
||||
# TODO: config
|
||||
workspace = {
|
||||
theme = "breeze-dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
config,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -15,6 +16,19 @@
|
|||
boot.kernelPackages = pkgs.linuxPackages_latest;
|
||||
networking.hostName = "wenar-nix";
|
||||
|
||||
hardware.graphics.enable = true;
|
||||
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
|
||||
hardware.nvidia = {
|
||||
modesetting.enable = true;
|
||||
powerManagement.enable = false;
|
||||
powerManagement.finegrained = false;
|
||||
open = false;
|
||||
nvidiaSettings = true;
|
||||
package = config.boot.kernelPackages.nvidiaPackages.production;
|
||||
};
|
||||
|
||||
# My own modules configuration
|
||||
krop = {
|
||||
audio = {
|
||||
|
|
|
@ -3,4 +3,10 @@
|
|||
home.username = "krop";
|
||||
home.homeDirectory = "/home/krop";
|
||||
home.stateVersion = "24.05";
|
||||
|
||||
krop.hm = {
|
||||
desktop.plasma = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue