darwin
This commit is contained in:
6
flake.lock
generated
6
flake.lock
generated
@@ -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": {
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
@@ -31,9 +31,9 @@
|
||||
home = "/Users/mattjallen";
|
||||
};
|
||||
|
||||
# nix = {
|
||||
# linux-builder.enable = true;
|
||||
# };
|
||||
nix = {
|
||||
linux-builder.enable = true;
|
||||
};
|
||||
|
||||
nix-rosetta-builder = {
|
||||
enable = true;
|
||||
|
||||
@@ -38,7 +38,6 @@
|
||||
};
|
||||
user = {
|
||||
name = "matt";
|
||||
hashedPasswordFile = null;
|
||||
mutableUsers = false;
|
||||
extraGroups = [
|
||||
"docker"
|
||||
|
||||
Reference in New Issue
Block a user