i love aurora (nixcats over nvf)

This commit is contained in:
Dea 2026-02-19 13:46:23 -05:00
parent ddd128093d
commit 6d2bcbc66e
20 changed files with 772 additions and 145 deletions

View file

@ -5,7 +5,6 @@
...
}:
{
# Enables nix commands + flakes
nix = {
@ -36,13 +35,27 @@
];
nixpkgs.config.allowUnfree = true;
nixpkgs.overlays = [ (import ./exprs/overlay.nix { }) ];
nixpkgs.overlays = [
(import ./exprs/overlay.nix { })
(self: super: {
element-desktop = super.element-desktop.overrideAttrs (
final: prev: {
desktopItems = [
((builtins.elemAt prev.desktopItems 0).override {
exec = "element-desktop %u --password-store=\"gnome-libsecret\"";
})
];
}
);
})
];
imports = [
./homemanager/mpv.nix
./homemanager/nvf.nix
# ./homemanager/nvf.nix
./hosts/sandalphon/mcsr/home.nix
./homemanager/vim/nixcats.nix
inputs.plasma-manager.homeModules.plasma-manager
inputs.nvf.homeManagerModules.default
# inputs.nvf.homeManagerModules.default
];
# dconf.settings = {};
@ -59,7 +72,8 @@
# settings = {
# add_newline = true;
# format = "$directory\n$character";
# format = ''$directory\n
# $character'';
# directory = {
# truncation_length = 3;
@ -80,4 +94,4 @@
};
programs.home-manager.enable = true;
}
}