1
1
Fork 0

Compare commits

..

No commits in common. "032d97152367d35f715d53fa150fd455c16ec52c" and "d634fa40bb99573f28e62d8a35a426a241f973ec" have entirely different histories.

8 changed files with 1 additions and 56 deletions

View file

@ -13,7 +13,7 @@
width = 3440; width = 3440;
height = 1440; height = 1440;
refresh = 100; refresh = 100;
desktops.niri.output.connectors = ["DP-1" "HDMI-A-1"]; desktops.niri.output.connectors = ["DP-1"];
programs.looking-glass = { programs.looking-glass = {
enable = true; enable = true;

View file

@ -70,12 +70,6 @@ in {
(leaf "open-floating" true) (leaf "open-floating" true)
]) ])
]); ]);
# https://github.com/YaLTeR/niri/wiki/Configuration:-Debug-Options
# https://github.com/sodiboo/niri-flake/blob/main/docs.md#programsnirisettingsdebug
settings.debug = {
#// disable-direct-scanout = [];
};
}; };
}; };
}; };

View file

@ -185,12 +185,6 @@ in {
url = "https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+{searchTerms}"; url = "https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+{searchTerms}";
} }
{
name = "Niri Issues";
shortcut = "niri";
url = "https://github.com/YaLTeR/niri/issues?q=is%3Aissue+is%3Aopen+{searchTerms}";
}
{ {
name = "NixOS Options"; name = "NixOS Options";
shortcut = "no"; shortcut = "no";

View file

@ -409,13 +409,6 @@ in {
URLTemplate = "https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+{searchTerms}"; URLTemplate = "https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+{searchTerms}";
} }
{
Name = "Niri Issues";
Alias = "niri";
IconURL = "https://github.com/favicon.ico";
URLTemplate = "https://github.com/YaLTeR/niri/issues?q=is%3Aissue+is%3Aopen+{searchTerms}";
}
{ {
Name = "Nix PR"; Name = "Nix PR";
Alias = "npr"; Alias = "npr";

View file

@ -134,12 +134,6 @@ case "$1" in
url="https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+" url="https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+"
query="${1:3}" query="${1:3}"
;; ;;
'niri '*)
label="Niri Issues"
icon="com.github.zren.bugzilla"
url="https://github.com/YaLTeR/niri/issues?q=is%3Aissue+is%3Aopen+"
query="${1:3}"
;;
'no '*) 'no '*)
label="NixOS Options" label="NixOS Options"
icon="nix-snowflake" icon="nix-snowflake"

View file

@ -21,7 +21,6 @@ with lib; {
#// kdeconnect.enable = true; #// kdeconnect.enable = true;
libinput.enable = true; libinput.enable = true;
logind.enable = true; logind.enable = true;
openrazer.enable = true;
pipewire.enable = true; pipewire.enable = true;
playerctld.enable = true; playerctld.enable = true;
ratbagd.enable = true; ratbagd.enable = true;

View file

@ -1,24 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.custom.services.openrazer;
in {
options.custom.services.openrazer = {
enable = mkOption {default = false;};
};
config = mkIf cfg.enable {
# https://wiki.nixos.org/wiki/Hardware/Razer
hardware.openrazer = {
enable = true;
users = [config.custom.username];
};
# https://polychromatic.app/
environment.systemPackages = [pkgs.polychromatic];
};
}

View file

@ -11,10 +11,5 @@ in {
config = mkIf cfg.enable { config = mkIf cfg.enable {
# https://github.com/cdown/tzupdate # https://github.com/cdown/tzupdate
services.tzupdate.enable = true; services.tzupdate.enable = true;
# https://github.com/NixOS/nixpkgs/blob/nixos-unstable/nixos/modules/services/misc/tzupdate.nix
systemd.services.tzupdate = {
wantedBy = ["network-online.target"]; # Run at boot without checking for Internet access
};
}; };
} }