This commit is contained in:
mjallen18
2025-12-19 16:59:01 -06:00
parent 76265f9b1b
commit 1280cf9939
4 changed files with 10 additions and 10 deletions

6
flake.lock generated
View File

@@ -997,11 +997,11 @@
]
},
"locked": {
"lastModified": 1765667832,
"narHash": "sha256-6KEF19MMbrVAs9OgWzmrqq9fI2h0BQDA8VHtszRn2bk=",
"lastModified": 1765832983,
"narHash": "sha256-9kZOSTJ6ITCoHs9gz4I06IJ2vb2S4gQd3WR4aTnWovI=",
"owner": "mjallen18",
"repo": "nixos-raspberrypi",
"rev": "ae5d1b993413b17dd664c4f0a114bc872c4e1303",
"rev": "8b00ff4f0b156eabd86f946fa7964efda04e2713",
"type": "github"
},
"original": {

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, system, ... }:
let
# # Pull from global theme options
# themeSize = "standard"; # "standard" | "compact"
@@ -23,6 +23,7 @@ let
# schemeVariants = [ iconScheme ];
# colorVariants = [ iconThemeVariant ];
# };
isDarwin = system == "aarch64_darwin";
in
{
stylix = {
@@ -59,8 +60,8 @@ in
};
sizes = {
applications = 12;
desktop = 14;
applications = if isDarwin then 10 else 12;
desktop = if isDarwin then 12 else 14;
popups = config.stylix.fonts.sizes.desktop;
terminal = config.stylix.fonts.sizes.applications;
};

View File

@@ -31,9 +31,9 @@
home = "/Users/mattjallen";
};
# nix = {
# linux-builder.enable = true;
# };
nix = {
linux-builder.enable = true;
};
nix-rosetta-builder = {
enable = true;

View File

@@ -38,7 +38,6 @@
};
user = {
name = "matt";
hashedPasswordFile = null;
mutableUsers = false;
extraGroups = [
"docker"