a dotfile but it's really big
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

belaf: niri-specific config

+7 -4
+1 -1
modules/desktop/wm/niri.nix
··· 121 121 }; 122 122 }; 123 123 eDP-1 = { 124 - mode = edp; 124 + mode = lib.mkDefault edp; 125 125 position = { 126 126 x = lg.height; 127 127 y = benq.height;
+6 -3
systems/belaf/default.nix
··· 1 - { pkgs, ... }: 1 + { pkgs, config, ... }: 2 2 { 3 3 imports = [ ./hardware.nix ]; 4 4 system.stateVersion = "25.11"; ··· 9 9 kernelPackages = pkgs.linuxPackages_latest; 10 10 }; 11 11 12 - virtualisation.docker.daemon.settings = { 13 - data-root = "/docker"; 12 + virtualisation.docker.daemon.settings.data-root = "/docker"; 13 + 14 + home-manager.users.${config.my.username}.programs.niri.settings.outputs.eDP-1.mode = { 15 + width = 2560; 16 + height = 1600; 14 17 }; 15 18 }