forked from wurzel/fruitbasket
added option to toggle office bloat
This commit is contained in:
parent
a8a8e6bad5
commit
048bd78eeb
6 changed files with 45 additions and 26 deletions
|
@ -7,7 +7,6 @@
|
|||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
|
@ -35,7 +34,7 @@
|
|||
firefox
|
||||
];
|
||||
|
||||
system.stateVersion = "21.11";
|
||||
system.stateVersion = "21.05";
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
imports = [
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
boot = {
|
||||
loader = {
|
||||
grub.enable = false;
|
||||
|
@ -18,6 +14,11 @@
|
|||
tmpOnTmpfs = true;
|
||||
};
|
||||
|
||||
nix = {
|
||||
autoOptimiseStore = true;
|
||||
};
|
||||
|
||||
|
||||
networking = {
|
||||
hostName = "sanddorn";
|
||||
|
||||
|
@ -27,6 +28,8 @@
|
|||
firewall.enable = false;
|
||||
};
|
||||
|
||||
programs.tmux.enable = true;
|
||||
|
||||
# Do not log to flash:
|
||||
services.journald.extraConfig = ''
|
||||
Storage=volatile
|
||||
|
@ -37,6 +40,7 @@
|
|||
wheelNeedsPassword = false;
|
||||
};
|
||||
|
||||
system.stateVersion = "21.11";
|
||||
documentation.enable = false;
|
||||
|
||||
system.stateVersion = "21.05";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue