nixcfg/hosts/rustboro/default.nix

78 lines
1.8 KiB
Nix
Raw Normal View History

2024-03-16 13:23:59 -04:00
# Lenovo Thinkpad T440p with a Core i5 4210M, 16GB RAM, 512GB SSD.
2024-02-29 17:06:55 -05:00
{
2024-04-07 22:16:33 -04:00
config,
lib,
pkgs,
...
}: {
2024-03-24 14:06:24 -04:00
imports = [
./hardware-configuration.nix # Include the results of the hardware scan.
2024-03-28 19:52:15 -04:00
./home.nix
2024-04-01 20:29:48 -04:00
./disko.nix
2024-03-24 14:06:24 -04:00
];
2024-02-29 17:06:55 -05:00
boot = {
# Bootloader.
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = true;
};
# initrd.postDeviceCommands = lib.mkAfter ''
# mkdir /btrfs_tmp
# mount /dev/sda2 /btrfs_tmp
# if [[ -e /btrfs_tmp/rootfs ]]; then
# mkdir -p /btrfs_tmp/old_roots
# timestamp=$(date --date="@$(stat -c %Y /btrfs_tmp/rootfs)" "+%Y-%m-%-d_%H:%M:%S")
# mv /btrfs_tmp/rootfs "/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 +5); do
# delete_subvolume_recursively "$i"
# done
# btrfs subvolume create /btrfs_tmp/rootfs
# umount /btrfs_tmp
# '';
# };
2024-02-29 17:06:55 -05:00
networking.hostName = "rustboro"; # Define your hostname.
systemConfig = {
plymouth.enable = true;
zramSwap = {
enable = true;
size = 100;
};
};
2024-04-17 21:22:22 -04:00
desktop = {
enable = true;
2024-04-17 21:22:22 -04:00
hyprland.enable = true;
};
apps = {
flatpak.enable = true;
2024-03-28 19:54:46 -04:00
steam.enable = false;
};
# environment.persistence."/persist" = {
# hideMounts = true;
# directories = [
# "/etc/NetworkManager/system-connections"
# "/etc/ssh"
# ];
# files = [
# "/etc/machine-id"
# ];
# };
2024-02-29 17:06:55 -05:00
system.stateVersion = "23.11"; # Did you read the comment?
2024-03-24 14:06:24 -04:00
}