Compare commits

..

No commits in common. "4d8c3fddd078b0ff1d7948cd963c56a2243e32f0" and "b3a3e27569a8e55486e08f76b5b1b2f501aad40c" have entirely different histories.

4 changed files with 5 additions and 17 deletions

View file

@ -11,7 +11,6 @@ in
(import ../remote-disk-unlock.nix ["igb"] sshKeys) (import ../remote-disk-unlock.nix ["igb"] sshKeys)
../builder.nix ../builder.nix
../kdeconnect-ports.nix ../kdeconnect-ports.nix
(import ../swapfile.nix 64)
]; ];
boot.loader = { boot.loader = {
@ -30,6 +29,11 @@ in
hardware.bluetooth.enable = true; # enables support for Bluetooth hardware.bluetooth.enable = true; # enables support for Bluetooth
hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot hardware.bluetooth.powerOnBoot = true; # powers up the default Bluetooth controller on boot
swapDevices = [{
device = "/var/lib/swapfile";
size = 64 * 1024;
}];
boot.kernelParams = [ "quiet" "amd_iommu=on" ]; boot.kernelParams = [ "quiet" "amd_iommu=on" ];
boot.supportedFilesystems = [ "ntfs" ]; boot.supportedFilesystems = [ "ntfs" ];
networking.hostName = "basado"; # Define your hostname. networking.hostName = "basado"; # Define your hostname.

View file

@ -1,5 +0,0 @@
{ config, ... }:
{
programs.ccache.enable = true;
nix.settings.extra-sandbox-paths = [ config.programs.ccache.cacheDir ];
}

View file

@ -19,8 +19,6 @@ in {
../forgejo.nix ../forgejo.nix
(import ../remote-disk-unlock.nix ["r8169"] sshKeys) (import ../remote-disk-unlock.nix ["r8169"] sshKeys)
../builder.nix ../builder.nix
../ccache.nix
(import ../swapfile.nix 64)
]; ];
boot = { boot = {

View file

@ -1,9 +0,0 @@
sizeGiB:
{
swapDevices = [
{
device = "/var/lib/swapfile";
size = sizeGiB * 1024;
}
];
}