lots of stuff idk

This commit is contained in:
xunuwu 2024-04-04 19:43:43 +02:00
parent a18ceb4f2e
commit 4e5f0a6e0b
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
39 changed files with 439 additions and 81 deletions

View file

@ -34,6 +34,10 @@ in {
"${self}/secrets/nixdesk"
"${mod}/services/syncthing.nix"
"${mod}/services/virt/podman.nix"
"${mod}/services/virt/waydroid.nix"
"${mod}/services/virt/distrobox.nix"
"${mod}/services/ollama.nix"
"${mod}/desktop/x11/nosleep.nix"
"${mod}/programs/gamemode.nix"

View file

@ -1,9 +1,13 @@
{...}: {
{pkgs, ...}: {
imports = [
./tools.nix
./sway.nix
];
environment.systemPackages = with pkgs; [
firefox
];
isoImage.edition = "sway-custom";
networking.hostName = "liveiso";

View file

@ -2,5 +2,6 @@
environment.systemPackages = with pkgs; [
neovim
parted
gparted
];
}

View file

@ -18,7 +18,6 @@
swapDevices = [
{
device = "/var/lib/swapfile";
randomEncryption.enable = true;
size = 16 * 1024;
}
];

View file

@ -29,11 +29,22 @@
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/0c080ce8-26f0-454b-a100-1ca9d5308931";
fsType = "ext4";
device = "/dev/disk/by-uuid/d87276c0-ef9c-422e-b2de-effc1b47c654";
fsType = "btrfs";
options = ["subvol=root" "compress=zstd"];
};
"/home" = {
device = "/dev/disk/by-uuid/d87276c0-ef9c-422e-b2de-effc1b47c654";
fsType = "btrfs";
options = ["subvol=home" "compress=zstd"];
};
"/nix" = {
device = "/dev/disk/by-uuid/d87276c0-ef9c-422e-b2de-effc1b47c654";
fsType = "btrfs";
options = ["subvol=nix" "compress=zstd" "noatime"];
};
"/boot" = {
device = "/dev/disk/by-uuid/D23A-89BF";
device = "/dev/disk/by-uuid/588B-CB97";
fsType = "vfat";
};
};