updated old-hp config
This commit is contained in:
parent
85d6cd7920
commit
34aa950ed3
@ -150,7 +150,7 @@
|
|||||||
kdePackages.kate
|
kdePackages.kate
|
||||||
nano
|
nano
|
||||||
# vm
|
# vm
|
||||||
unstable.quickemu
|
quickemu
|
||||||
# containers
|
# containers
|
||||||
podman
|
podman
|
||||||
podman-compose
|
podman-compose
|
||||||
@ -159,7 +159,9 @@
|
|||||||
# office apps
|
# office apps
|
||||||
bottles
|
bottles
|
||||||
onlyoffice-bin_latest
|
onlyoffice-bin_latest
|
||||||
logseq
|
nb
|
||||||
|
git
|
||||||
|
w3m
|
||||||
zoom-us
|
zoom-us
|
||||||
orca-slicer
|
orca-slicer
|
||||||
gpodder
|
gpodder
|
||||||
@ -171,16 +173,6 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services = {
|
|
||||||
syncthing = {
|
|
||||||
enable = true;
|
|
||||||
user = "vincent";
|
|
||||||
openDefaultPorts = true;
|
|
||||||
dataDir = "/home/vincent/logseq"; # Default folder for new synced folders
|
|
||||||
configDir = "/home/vincent/Documents/.config/syncthing"; # Folder for Syncthing's settings and keys
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# flatpak
|
# flatpak
|
||||||
xdg.portal.enable = true;
|
xdg.portal.enable = true;
|
||||||
services.flatpak.enable = true;
|
services.flatpak.enable = true;
|
||||||
|
@ -14,41 +14,41 @@
|
|||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/f010b3df-9a60-4a40-a54d-d98c6a6ce992";
|
{ device = "/dev/sda2";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=root" ];
|
options = [ "subvol=root" "compress=zstd:5" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/7a43a7b8-6abd-4266-af16-3a5b0637ad77";
|
boot.initrd.luks.devices."cryptroot".device = "/dev/sda2";
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/7673-9394";
|
{ device = "/dev/sda1";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/home" =
|
fileSystems."/home" =
|
||||||
{ device = "/dev/disk/by-uuid/f010b3df-9a60-4a40-a54d-d98c6a6ce992";
|
{ device = "/dev/sda2";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=home" ];
|
options = [ "subvol=home" "compress=zstd:5" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/nix" =
|
fileSystems."/nix" =
|
||||||
{ device = "/dev/disk/by-uuid/f010b3df-9a60-4a40-a54d-d98c6a6ce992";
|
{ device = "/dev/sda2";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=nix" ];
|
options = [ "subvol=nix" "compress=zstd:5" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/persist" =
|
fileSystems."/persist" =
|
||||||
{ device = "/dev/disk/by-uuid/f010b3df-9a60-4a40-a54d-d98c6a6ce992";
|
{ device = "/dev/sda2";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=persist" ];
|
options = [ "subvol=persist" "compress=zstd:5" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/var/log" =
|
fileSystems."/var/log" =
|
||||||
{ device = "/dev/disk/by-uuid/f010b3df-9a60-4a40-a54d-d98c6a6ce992";
|
{ device = "/dev/sda2";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=log" ];
|
options = [ "subvol=log" "compress=zstd:5" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
Loading…
Reference in New Issue
Block a user