add swap file to wheatley

This commit is contained in:
Lillian Violet 2024-12-08 15:09:10 +01:00
parent 9c04783246
commit c0d9fc440e
2 changed files with 10 additions and 12 deletions

View file

@ -2,22 +2,15 @@
pkgs, pkgs,
osConfig, osConfig,
... ...
}: let }: {
kdeconnect = home.file.".config/kdeconnect/config" = {
pkgs.writeText "config" text = ''
''
[General] [General]
keyAlgorithm=EC keyAlgorithm=EC
name=${osConfig.networking.hostName} name=${osConfig.networking.hostName}
customDevices=10.0.0.2,10.0.0.3,10.0.0.4,10.0.0.5 customDevices=10.0.0.2,10.0.0.3,10.0.0.4,10.0.0.5
''; '';
in { target = "~/.config/kdeconnect/config";
home.file = {
"config" = {
source = "${kdeconnect}";
target = "~/.config/kdeconnect/config";
};
}; };
programs.plasma = { programs.plasma = {

View file

@ -16,7 +16,12 @@
boot.extraModulePackages = []; boot.extraModulePackages = [];
boot.supportedFilesystems = lib.mkForce ["btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs"]; boot.supportedFilesystems = lib.mkForce ["btrfs" "cifs" "f2fs" "jfs" "ntfs" "reiserfs" "vfat" "xfs"];
swapDevices = []; swapDevices = [
{
device = "/var/lib/swapfile";
size = 16 * 1024;
}
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's