Compare commits
No commits in common. "981bc43fbecca112330eefa4cf05da80177d8cd6" and "a777db4848b2738a274e70c13b41e08f3e002165" have entirely different histories.
981bc43fbe
...
a777db4848
7 changed files with 14 additions and 40 deletions
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
packages = eachSystem (
|
packages = eachSystem (
|
||||||
system: {
|
system: {
|
||||||
inherit (import ./packages pkgsFor.${system}) fish helix kakoune;
|
inherit (import ./packages pkgsFor.${system}) helix fish;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
};
|
};
|
||||||
usrEnv = {
|
usrEnv = {
|
||||||
desktops.hyprland.enable = false;
|
desktops.hyprland.enable = true;
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
launchers = {
|
launchers = {
|
||||||
|
|
|
@ -90,9 +90,6 @@
|
||||||
zapzap
|
zapzap
|
||||||
zip
|
zip
|
||||||
zoxide
|
zoxide
|
||||||
kakoune
|
|
||||||
kakoune-lsp
|
|
||||||
television
|
|
||||||
;
|
;
|
||||||
inherit (self.packages.${pkgs.stdenv.system}) helix;
|
inherit (self.packages.${pkgs.stdenv.system}) helix;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}: let
|
|
||||||
cfg = config.programs.niri;
|
|
||||||
inherit (pkgs) xdg-desktop-portal-gtk xdg-desktop-portal-gnome;
|
|
||||||
in {
|
|
||||||
programs.niri = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
programs.xwayland.enable = lib.mkForce false;
|
|
||||||
services.gnome.gnome-keyring.enable = lib.mkForce false;
|
|
||||||
environment.systemPackages = builtins.attrValues {
|
|
||||||
inherit (pkgs) wmenu swaylock;
|
|
||||||
};
|
|
||||||
|
|
||||||
xdg.portal = {
|
|
||||||
enable = lib.mkDefault true;
|
|
||||||
|
|
||||||
configPackages = [cfg.package];
|
|
||||||
|
|
||||||
# Recommended by upstream, required for screencast support
|
|
||||||
# https://github.com/YaLTeR/niri/wiki/Important-Software#portals
|
|
||||||
extraPortals = [
|
|
||||||
xdg-desktop-portal-gnome
|
|
||||||
xdg-desktop-portal-gtk
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -5,4 +5,12 @@
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
in {
|
in {
|
||||||
|
programs.sway = {
|
||||||
|
enable = true;
|
||||||
|
xwayland.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = builtins.attrValues {
|
||||||
|
inherit (pkgs) i3status;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
pkgs: let
|
pkgs: let
|
||||||
helix = pkgs.callPackage ./helix.nix {};
|
helix = pkgs.callPackage ./helix.nix {};
|
||||||
kakoune = pkgs.callPackage ./kakoune.nix {};
|
kakoune = null;
|
||||||
fish = pkgs.callPackage ./shell {};
|
fish = pkgs.callPackage ./shell {};
|
||||||
in {
|
in {
|
||||||
inherit helix kakoune fish;
|
inherit helix kakoune fish;
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mawww";
|
owner = "mawww";
|
||||||
repo = "kakoune";
|
repo = "kakoune";
|
||||||
rev = "da5e5bc635fa6a3def21d3d59906b9ee0f1d1831";
|
rev = "be82047dbf5f74f123e925b96e0e13962a4e0c09";
|
||||||
hash = "sha256-+xqJrJr6nnmEpQaizQ3JMDEISCD8IMB84NJZiXJ74kY=";
|
hash = "sha256-akSmIe0SUe9re8a90ssrykowCzThZnzqVow9erT+0U4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
makeFlags = ["debug=no" "PREFIX=${placeholder "out"}"];
|
makeFlags = ["debug=no" "PREFIX=${placeholder "out"}"];
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
plugins = builtins.attrValues {
|
plugins = builtins.attrValues {
|
||||||
inherit (kakounePlugins);
|
inherit (kakounePlugins) fzf-kak kakoune-catppuccin;
|
||||||
};
|
};
|
||||||
|
|
||||||
kakoune-wrapped = symlinkJoin {
|
kakoune-wrapped = symlinkJoin {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue