Compare commits
No commits in common. "032d97152367d35f715d53fa150fd455c16ec52c" and "d634fa40bb99573f28e62d8a35a426a241f973ec" have entirely different histories.
032d971523
...
d634fa40bb
8 changed files with 1 additions and 56 deletions
|
@ -13,7 +13,7 @@
|
|||
width = 3440;
|
||||
height = 1440;
|
||||
refresh = 100;
|
||||
desktops.niri.output.connectors = ["DP-1" "HDMI-A-1"];
|
||||
desktops.niri.output.connectors = ["DP-1"];
|
||||
|
||||
programs.looking-glass = {
|
||||
enable = true;
|
||||
|
|
|
@ -70,12 +70,6 @@ in {
|
|||
(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 = [];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -185,12 +185,6 @@ in {
|
|||
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";
|
||||
shortcut = "no";
|
||||
|
|
|
@ -409,13 +409,6 @@ in {
|
|||
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";
|
||||
Alias = "npr";
|
||||
|
|
|
@ -134,12 +134,6 @@ case "$1" in
|
|||
url="https://github.com/NixOS/nixpkgs/issues?q=is%3Aissue+is%3Aopen+"
|
||||
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 '*)
|
||||
label="NixOS Options"
|
||||
icon="nix-snowflake"
|
||||
|
|
|
@ -21,7 +21,6 @@ with lib; {
|
|||
#// kdeconnect.enable = true;
|
||||
libinput.enable = true;
|
||||
logind.enable = true;
|
||||
openrazer.enable = true;
|
||||
pipewire.enable = true;
|
||||
playerctld.enable = true;
|
||||
ratbagd.enable = true;
|
||||
|
|
|
@ -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];
|
||||
};
|
||||
}
|
|
@ -11,10 +11,5 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
# https://github.com/cdown/tzupdate
|
||||
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
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue