feat: redesign, with onedark theme
This commit is contained in:
parent
00f5075f17
commit
19e72eedb7
12 changed files with 71 additions and 50 deletions
|
@ -8,6 +8,8 @@ let
|
|||
"www"
|
||||
"blog"
|
||||
"files"
|
||||
"code"
|
||||
"chat"
|
||||
];
|
||||
in
|
||||
{
|
||||
|
|
|
@ -1,19 +1,18 @@
|
|||
{ config
|
||||
, lib
|
||||
, pkgs
|
||||
, ...
|
||||
}: {
|
||||
specialisation = {
|
||||
powersave.configuration = {
|
||||
hardware.nvidia.prime = {
|
||||
offload = {
|
||||
enable = lib.mkForce true;
|
||||
enableOffloadCmd = lib.mkForce true;
|
||||
};
|
||||
sync.enable = lib.mkForce false;
|
||||
};
|
||||
};
|
||||
};
|
||||
#specialisation = {
|
||||
# powersave.configuration = {
|
||||
# hardware.nvidia.prime = {
|
||||
# offload = {
|
||||
# enable = lib.mkForce true;
|
||||
# enableOffloadCmd = lib.mkForce true;
|
||||
# };
|
||||
# sync.enable = lib.mkForce false;
|
||||
# };
|
||||
# };
|
||||
#};
|
||||
boot.kernelModules = [ "nvidia_uvm" ];
|
||||
hardware.graphics = {
|
||||
enable = true;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
./printing.service.nix
|
||||
./tailscale.service.nix
|
||||
./power_management.service.nix
|
||||
./seatd.service.nix
|
||||
#./seatd.service.nix
|
||||
./logind.service.nix
|
||||
#./mpd.service.nix
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ ... }: {
|
||||
specialisation.powersave.configuration = {
|
||||
services.auto-cpufreq.enable = true;
|
||||
};
|
||||
#specialisation.powersave.configuration = {
|
||||
# services.auto-cpufreq.enable = true;
|
||||
#};
|
||||
services = {
|
||||
upower.enable = true;
|
||||
udisks2.enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, lib, ... }: {
|
||||
{ pkgs, lib, ... }: {
|
||||
specialisation = {
|
||||
wayland = {
|
||||
configuration = {
|
||||
|
@ -16,9 +16,9 @@
|
|||
services.xserver.displayManager.startx.enable = true;
|
||||
}
|
||||
(import ./dwm {
|
||||
inherit config;
|
||||
#inherit config;
|
||||
inherit pkgs;
|
||||
inherit lib;
|
||||
#inherit lib;
|
||||
});
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue