This commit is contained in:
unexplrd
2025-02-14 16:00:25 +02:00
parent ec5faa59a9
commit c5513bf9b2
5 changed files with 95 additions and 47 deletions

View File

@ -33,17 +33,29 @@
"/" = {
device = "/dev/disk/by-uuid/79ce18b8-3a9e-4cd0-be62-60972686f44a";
fsType = "btrfs";
options = ["compress=zstd,subvol=@nixos-root"];
options = [
"noatime"
"compress=zstd"
"subvol=@nixos-root"
];
};
"/home" = {
device = "/dev/disk/by-uuid/79ce18b8-3a9e-4cd0-be62-60972686f44a";
fsType = "btrfs";
options = ["compress=zstd,subvol=@home"];
options = [
"noatime"
"compress=zstd"
"subvol=@home"
];
};
"/storage" = {
device = "/dev/disk/by-uuid/79ce18b8-3a9e-4cd0-be62-60972686f44a";
fsType = "btrfs";
options = ["compress=zstd,subvol=@storage"];
options = [
"noatime"
"compress=zstd"
"subvol=@storage"
];
};
"/boot" = {
device = "/dev/disk/by-uuid/976C-7EE6";

View File

@ -12,14 +12,14 @@
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/helios.yaml";
base16Scheme = "${pkgs.base16-schemes}/share/themes/solarflare.yaml";
polarity = "dark";
cursor = {
package = pkgs.bibata-cursors-translucent;
name = "Bibata_Tinted";
size = 32;
};
image = ../../wallpapers/wallhaven-zyl9qg.png;
image = ../../wallpapers/wallhaven-39vk3v.jpg;
opacity.terminal = 0.9;
fonts = {
sizes = {

View File

@ -20,6 +20,7 @@
enable = true;
delta.enable = true;
aliases = {
cl = "clone";
co = "checkout";
pom = "push origin main";
};
@ -38,16 +39,17 @@
};
home.packages = with pkgs; [
alejandra
flatpak
trashy
procs
dust
tree
zip
vial
unzip
waycheck
virt-manager
alejandra # nix formatter
flatpak # flatpak cli
trashy # trash cli
procs # ps in rust
dust # du in rust
fend # calc in rust
tree # tree util
zip # zip util
vial # qmk keyboard configuring app
unzip # unzip util
waycheck # check wayland protocols
virt-manager # libvirt gui
];
}