1
0
Fork 0

Compatibility with the new NixOS version

master
dump_stack() 2021-10-07 13:46:24 +00:00
parent 4db5c014eb
commit 6e24fd9b01
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
3 changed files with 4 additions and 2 deletions

View File

@ -53,7 +53,7 @@ in {
hardware.bluetooth = {
enable = true;
config = {
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
@ -73,7 +73,7 @@ in {
};
fonts = {
enableFontDir = true;
fontDir.enable = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
ubuntu_font_family

View File

@ -12,6 +12,7 @@ in {
networking.usePredictableInterfaceNames = false;
networking.wireless.enable = true;
networking.wireless.interfaces = [ "wlan0" ];
imports = [ ./wireless-networks.nix ];
networking.extraHosts = secrets.hosts;

View File

@ -52,6 +52,7 @@ in {
users.users.out-of-tree = {
home = "/var/out-of-tree";
isSystemUser = true;
createHome = true;
extraGroups = [ "docker" "kvm" ];
};