mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
30 lines
607 B
Nix
30 lines
607 B
Nix
{ self, inputs, config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.niri-flake.nixosModules.niri
|
|
];
|
|
config = {
|
|
|
|
niri-flake.cache.enable = true;
|
|
home-manager.users.${config.swarselsystems.mainUser}.imports = [
|
|
"${self}/modules/home/optional/niri.nix"
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wl-clipboard
|
|
wayland-utils
|
|
libsecret
|
|
cage
|
|
gamescope
|
|
xwayland-satellite-unstable
|
|
];
|
|
|
|
|
|
programs = {
|
|
niri = {
|
|
enable = true;
|
|
package = pkgs.niri-stable; # the actual niri that will be installed and used
|
|
};
|
|
};
|
|
};
|
|
}
|