mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-08-31 23:57:13 +02:00
- read Asahi aop-sensors ALS via iio and drive eDP-1 backlight - drop PrivateUsers for wluma so it can reach the real user D-Bus session - remove hypridle 10min screen-dim listener: its brightnessctl writes fight wluma and get learned as manual adjustments
21 lines
580 B
Nix
21 lines
580 B
Nix
{ config, ... }:
|
|
let
|
|
hostName = "shoukei"; # Define your hostname.
|
|
mkSymlink = config.lib.file.mkOutOfStoreSymlink;
|
|
in
|
|
{
|
|
imports = [
|
|
../../linux/gui.nix
|
|
./12kingdoms-shoukei/wluma.nix
|
|
];
|
|
|
|
programs.ssh.settings."github.com".IdentityFile = "${config.home.homeDirectory}/.ssh/${hostName}";
|
|
|
|
modules.desktop.gaming.enable = false;
|
|
modules.desktop.niri.enable = true;
|
|
modules.desktop.nvidia.enable = false;
|
|
|
|
xdg.configFile."niri/niri-hardware.kdl".source =
|
|
mkSymlink "${config.home.homeDirectory}/nix-config/hosts/12kingdoms-shoukei/niri-hardware.kdl";
|
|
}
|