mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
102 lines
2.3 KiB
Nix
102 lines
2.3 KiB
Nix
{
|
|
modulesPath,
|
|
inputs,
|
|
username,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
inputs.disko.nixosModules.default
|
|
(import ./disko.nix {device = "/dev/sda";})
|
|
|
|
../common
|
|
];
|
|
|
|
tux.services.openssh.enable = true;
|
|
|
|
nixpkgs = {
|
|
hostPlatform = "x86_64-linux";
|
|
};
|
|
|
|
boot = {
|
|
initrd.systemd = {
|
|
enable = lib.mkForce true;
|
|
|
|
services.wipe-my-fs = {
|
|
wantedBy = ["initrd.target"];
|
|
after = ["initrd-root-device.target"];
|
|
before = ["sysroot.mount"];
|
|
unitConfig.DefaultDependencies = "no";
|
|
serviceConfig.Type = "oneshot";
|
|
script = ''
|
|
mkdir /btrfs_tmp
|
|
mount /dev/disk/by-partlabel/disk-primary-root /btrfs_tmp
|
|
|
|
if [[ -e /btrfs_tmp/root ]]; then
|
|
mkdir -p /btrfs_tmp/old_roots
|
|
timestamp=$(date --date="@$(stat -c %Y /btrfs_tmp/root)" "+%Y-%m-%-d_%H:%M:%S")
|
|
mv /btrfs_tmp/root "/btrfs_tmp/old_roots/$timestamp"
|
|
fi
|
|
|
|
delete_subvolume_recursively() {
|
|
IFS=$'\n'
|
|
for i in $(btrfs subvolume list -o "$1" | cut -f 9- -d ' '); do
|
|
delete_subvolume_recursively "/btrfs_tmp/$i"
|
|
done
|
|
btrfs subvolume delete "$1"
|
|
}
|
|
|
|
for i in $(find /btrfs_tmp/old_roots/ -maxdepth 1 -mtime +30); do
|
|
delete_subvolume_recursively "$i"
|
|
done
|
|
|
|
btrfs subvolume create /btrfs_tmp/root
|
|
umount /btrfs_tmp
|
|
'';
|
|
};
|
|
};
|
|
|
|
loader = {
|
|
grub = {
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
networking.hostName = "vps";
|
|
|
|
users = {
|
|
users.${username} = {
|
|
password = "${username}";
|
|
hashedPasswordFile = lib.mkForce null;
|
|
};
|
|
};
|
|
|
|
programs.fuse.userAllowOther = true;
|
|
fileSystems."/persist".neededForBoot = true;
|
|
environment.persistence."/persist" = {
|
|
hideMounts = true;
|
|
directories = [
|
|
"/var/log"
|
|
"/var/lib/nixos"
|
|
];
|
|
files = [
|
|
"/etc/ssh/ssh_host_ed25519_key"
|
|
"/etc/ssh/ssh_host_ed25519_key.pub"
|
|
"/etc/ssh/ssh_host_rsa_key"
|
|
"/etc/ssh/ssh_host_rsa_key.pub"
|
|
];
|
|
};
|
|
|
|
home-manager.users.${username} = {
|
|
imports = [
|
|
./home.nix
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|