back to kde+karousel, niri was cool, but it wasn't kde

This commit is contained in:
William 2026-03-27 10:15:48 -03:00
parent b106482e3c
commit 1d414a346c
15 changed files with 60 additions and 348 deletions

View file

@ -1,7 +1,12 @@
{ ... }:
{
flake.modules.nixos.nix =
{ inputs, pkgs, ... }:
{
inputs,
pkgs,
lib,
...
}:
{
imports = [ inputs.nixos-cli.nixosModules.nixos-cli ];
@ -31,21 +36,28 @@
services.nixos-cli = {
enable = true;
config = {
use_nvd = true;
ignore_dirty_tree = true;
apply = {
reexec_as_root = true;
use_nom = true;
};
confirmation.empty = "default-yes";
differ = {
command = [
"${lib.getExe pkgs.nvd}"
"diff"
];
tool = "command";
};
};
};
environment.systemPackages = with pkgs; [
nix-output-monitor
nvd
];
documentation.nixos.enable = false;
system.stateVersion = "22.11";
};
}