From e8dd1ca4d4a5cd16e82a298de5c49b1d0c68ace7 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Wed, 15 Feb 2023 06:05:48 +0100 Subject: [PATCH] roles.common: Cleanup, removed variables argument --- roles/common.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/roles/common.nix b/roles/common.nix index a088218..ccfe52a 100644 --- a/roles/common.nix +++ b/roles/common.nix @@ -1,4 +1,4 @@ -{ config, pkgs, variables, lib, ... }: +{ config, pkgs, lib, ... }: { boot.tmpOnTmpfs = true; @@ -24,10 +24,11 @@ }; }; - nixpkgs = { config = { allowUnfree = true; }; }; - fonts.fontconfig.enable = true; - fonts.fonts = with pkgs; [ cascadia-code victor-mono ]; + fonts = { + fontconfig.enable = true; + fonts = with pkgs; [ cascadia-code victor-mono ]; + }; environment.systemPackages = with pkgs; [ file