This commit is contained in:
2025-03-03 18:50:51 +02:00
parent 15f3bf07e7
commit 25549279f2
11 changed files with 159 additions and 20 deletions

View File

@ -1,11 +1,12 @@
{inputs, ...}: {
imports = with inputs; [
nix-index-database.hmModules.nix-index
self.homeModules.desktop
self.homeModules.programs
./programs.nix
./flatpak.nix
];
desktop.hyprland.enable = true;
# desktop.hyprland.enable = true;
home = {
stateVersion = "25.05";
sessionPath = [

View File

@ -1,11 +1,13 @@
{pkgs, ...}: {
shell = {
fish.enable = true;
nushell.enable = false;
oh-my-posh.enable = true;
};
console.yazi.enable = true;
stylix.targets.fzf.enable = false;
programs = {
bat.enable = true;
btop = {
@ -14,7 +16,13 @@
};
eza.enable = true;
fd.enable = true;
fzf.enable = true;
fzf = {
enable = true;
defaultOptions = ["--color=16"];
};
pay-respects.enable = true;
nix-index.enable = true;
nix-index-database.comma.enable = true;
gitui.enable = true;
git = {
enable = true;
@ -37,6 +45,7 @@
editor = {
helix.enable = true;
neve.enable = true;
zed.enable = true;
};
home.packages = with pkgs; [
@ -44,15 +53,16 @@
flatpak # flatpak cli
trashy # trash cli
procs # ps in rust
ouch # archive manager in runt
dust # du in rust
fend # calc in rust
moar # better pager
tree # tree util
rbw # bitwarden cli in rust
pinentry-qt # pinentry for rbw
zip # zip util
vial # qmk keyboard configuring app
unzip # unzip util
waycheck # check wayland protocols
virt-manager # libvirt gui
];
systemd.user.settings.Manager.DefaultEnvironment.PAGER = "moar";
}