cleanup, reorganise, syncthing

This commit is contained in:
2025-03-26 16:33:45 +02:00
parent d4b568a0d5
commit 8cd8b47273
3 changed files with 43 additions and 15 deletions

View File

@ -21,10 +21,14 @@
''; '';
}; };
in { in {
boot.initrd.availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" "xe" "i915"]; boot = {
boot.initrd.kernelModules = []; initrd = {
boot.kernelModules = ["kvm-intel"]; availableKernelModules = ["ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" "xe" "i915"];
boot.extraModulePackages = []; kernelModules = [];
};
kernelModules = ["kvm-intel"];
extraModulePackages = [];
};
swapDevices = [ swapDevices = [
{ {

View File

@ -1,13 +1,17 @@
{pkgs, ...}: { {pkgs, ...}: {
shell = { shell = {
fish.enable = true; fish.enable = true;
nushell.enable = false;
oh-my-posh.enable = true; oh-my-posh.enable = true;
}; };
console.yazi.enable = true; console.yazi.enable = true;
stylix.targets.fzf.enable = false; stylix.targets.fzf.enable = false;
services.ssh-agent.enable = true;
services.pueue.enable = true;
syncthing.enable = true;
programs = { programs = {
bat.enable = true; bat.enable = true;
btop = { btop = {
@ -34,6 +38,7 @@
pom = "push origin main"; pom = "push origin main";
}; };
}; };
jujutsu.enable = true;
ripgrep.enable = true; ripgrep.enable = true;
}; };
@ -47,20 +52,36 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
alejandra # nix formatter alejandra # nix formatter in rust
flatpak # flatpak cli devenv # programming deps in rust
trashy # trash cli
procs # ps in rust
ouch # archive manager in runt
dust # du in rust dust # du in rust
fend # calc in rust fend # calc in rust
moar # better pager flatpak # flatpak cli
tree # tree util jj-fzf # fuzzy finder jujutsu tui
rbw # bitwarden cli in rust just # make in rust
ouch # archive manager in runt
overskride # bluetooth gui in rust
pika-backup # borg gui in rust
pinentry-qt # pinentry for rbw pinentry-qt # pinentry for rbw
procs # ps in rust
rbw # bitwarden cli in rust
trashy # trash cli in rust
vial # qmk keyboard configuring app vial # qmk keyboard configuring app
waycheck # check wayland protocols
virt-manager # libvirt gui virt-manager # libvirt gui
waycheck # check wayland protocols
]; ];
systemd.user.settings.Manager.DefaultEnvironment.PAGER = "moar";
xdg.desktopEntries = {
uni = {
actions."Copy".exec = "fish -c \"~/.local/bin/uni --copy\"";
categories = ["Utility" "X-Launch" "Network"];
comment = "Select and open or copy URLs from a list.";
exec = "fish -c \"~/.local/bin/uni\"";
icon = "web-browser";
name = "Uni URL Handler";
startupNotify = true;
terminal = false;
type = "Application";
};
};
} }

View File

@ -22,6 +22,7 @@ in {
devices = { devices = {
"dunamis".id = "72VRZFX-65SZUKP-2XL2WLG-75MMKLG-PQLDEZN-G5OI5U7-RLF4OHS-LNCXEQX"; "dunamis".id = "72VRZFX-65SZUKP-2XL2WLG-75MMKLG-PQLDEZN-G5OI5U7-RLF4OHS-LNCXEQX";
"sarien".id = "LUVZGFV-OV6FV5E-SDROWHZ-4BR5PFB-VP5Y326-AFEP6NL-ORUMJQQ-SSYCQQO"; "sarien".id = "LUVZGFV-OV6FV5E-SDROWHZ-4BR5PFB-VP5Y326-AFEP6NL-ORUMJQQ-SSYCQQO";
"eldrid".id = "VTSBNN6-W6UUT66-NDEQBNJ-DJJM5YE-PWU63IW-Y6CTJNN-Q3RHEQB-POBLCQH";
"phone".id = "XBZLA7Y-YOBZHLO-MSTRAGS-6SN5MEZ-FDKR76F-DIX2BKE-FMDNUYR-TMD6UAQ"; "phone".id = "XBZLA7Y-YOBZHLO-MSTRAGS-6SN5MEZ-FDKR76F-DIX2BKE-FMDNUYR-TMD6UAQ";
}; };
folders = { folders = {
@ -30,6 +31,7 @@ in {
devices = [ devices = [
"dunamis" "dunamis"
"sarien" "sarien"
"eldrid"
"phone" "phone"
]; ];
}; };
@ -38,6 +40,7 @@ in {
devices = [ devices = [
"dunamis" "dunamis"
"sarien" "sarien"
"eldrid"
]; ];
}; };
}; };