Compare commits

..

No commits in common. "6da74e745eaa32fe3dca816d9f9aa9742943fdbc" and "9b0c02deb9f4fa8b21e5812bbc51ebb2cf923ef5" have entirely different histories.

6 changed files with 29 additions and 12 deletions

View file

@ -135,16 +135,13 @@ in
"Mod+Shift+U".action = move-window-to-workspace-up;
"Mod+Shift+I".action = move-window-to-workspace-down;
"Mod+W".action = maximize-column;
"Mod+E".action = set-column-width "50%";
"Mod+R".action = set-column-width "75%";
"Mod+Q".action = set-column-width "25%";
"Mod+C".action = center-column;
"Mod+Shift+Space".action = toggle-window-floating;
"Mod+Space".action = switch-focus-between-floating-and-tiling;
"Print".action = screenshot;
"Alt+Print".action = screenshot-window;
"Ctrl+Print".action = screenshot-screen;
# "Mod+R".action = switch-preset-column-width;
"Mod+R".action = switch-preset-column-width;
"Mod+Shift+R".action = switch-preset-window-height;
"Mod+Ctrl+R".action = reset-window-height;
"Mod+F".action = fullscreen-window;

View file

@ -115,8 +115,7 @@
end
end)
'';
# plain tab conflicts with i try to indent
"<C-Tab>" = ''
"<Tab>" = ''
cmp.mapping(function(fallback)
if require("luasnip").jumpable(1) then
require("luasnip").jump(1)
@ -175,7 +174,6 @@
};
plugins.fzf-lua = {
enable = true;
profile = "fzf-native";
keymaps = {
"<leader>ff" = "files";
"<leader>fg" = "live_grep";

View file

@ -1,4 +1,4 @@
{ inputs, ... }:
{ ... }:
{
nix = {
settings = {
@ -26,7 +26,6 @@
extraOptions = ''
builders-use-substitutes = true
'';
registry.nixpkgs.flake = inputs.nixpkgs;
};
time.timeZone = "America/Toronto";
networking.firewall.logRefusedConnections = false;

View file

@ -311,7 +311,8 @@
services.trezord.enable = true;
programs.niri.enable = true;
programs.niri.package = pkgs.niri-unstable;
programs.xwayland.enable = true;
my.niri = {
enable = true;
package = pkgs.niri-unstable;
};
}

View file

@ -2,5 +2,6 @@
{
imports = [
./backup.nix
./niri.nix
];
}

21
modules/niri.nix Normal file
View file

@ -0,0 +1,21 @@
{
pkgs,
config,
lib,
...
}:
let
cfg = config.my.niri;
in
{
options.my.niri = {
enable = lib.mkEnableOption "niri";
package = lib.mkPackageOption pkgs "niri" { };
};
config = lib.mkIf cfg.enable {
programs.niri.package = cfg.package;
programs.niri.enable = true;
programs.xwayland.enable = true;
};
}