format profiles
This commit is contained in:
parent
ef0b4a46e1
commit
f27dff190a
4 changed files with 4 additions and 6 deletions
|
@ -14,8 +14,7 @@
|
||||||
|
|
||||||
# Restic backups disabled.
|
# Restic backups disabled.
|
||||||
# TODO: configure storagebox for hetzner backups
|
# TODO: configure storagebox for hetzner backups
|
||||||
system.resticBackup =
|
system.resticBackup = {
|
||||||
{
|
|
||||||
local.enable = false;
|
local.enable = false;
|
||||||
remote.enable = false;
|
remote.enable = false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
{ lib, pkgs, ... }:
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
# Support windows partition
|
|
||||||
mySystem = {
|
mySystem = {
|
||||||
security.wheelNeedsSudoPassword = false;
|
security.wheelNeedsSudoPassword = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
efi = {
|
efi = {
|
||||||
canTouchEfiVariables = true;
|
canTouchEfiVariables = true;
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
zfsSupport = true;
|
zfsSupport = true;
|
||||||
device = "nodev";
|
device = "nodev";
|
||||||
mirroredBoots = [
|
mirroredBoots = [
|
||||||
{ devices = ["nodev"]; path = "/boot";}
|
{ devices = [ "nodev" ]; path = "/boot"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
# efi = {
|
# efi = {
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
# Disable Alsa
|
# Disable Alsa
|
||||||
sound.enable = lib.mkDefault false;
|
sound.enable = lib.mkDefault false;
|
||||||
hardware.pulseaudio.enable = lib.mkForce false;
|
hardware.pulseaudio.enable = lib.mkForce false;
|
||||||
|
|
||||||
# Realtime Kit
|
# Realtime Kit
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
# Enable pipewire
|
# Enable pipewire
|
||||||
|
|
Loading…
Reference in a new issue