darwin
This commit is contained in:
6
flake.lock
generated
6
flake.lock
generated
@@ -997,11 +997,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1765667832,
|
"lastModified": 1765832983,
|
||||||
"narHash": "sha256-6KEF19MMbrVAs9OgWzmrqq9fI2h0BQDA8VHtszRn2bk=",
|
"narHash": "sha256-9kZOSTJ6ITCoHs9gz4I06IJ2vb2S4gQd3WR4aTnWovI=",
|
||||||
"owner": "mjallen18",
|
"owner": "mjallen18",
|
||||||
"repo": "nixos-raspberrypi",
|
"repo": "nixos-raspberrypi",
|
||||||
"rev": "ae5d1b993413b17dd664c4f0a114bc872c4e1303",
|
"rev": "8b00ff4f0b156eabd86f946fa7964efda04e2713",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, ... }:
|
{ config, pkgs, system, ... }:
|
||||||
let
|
let
|
||||||
# # Pull from global theme options
|
# # Pull from global theme options
|
||||||
# themeSize = "standard"; # "standard" | "compact"
|
# themeSize = "standard"; # "standard" | "compact"
|
||||||
@@ -23,6 +23,7 @@ let
|
|||||||
# schemeVariants = [ iconScheme ];
|
# schemeVariants = [ iconScheme ];
|
||||||
# colorVariants = [ iconThemeVariant ];
|
# colorVariants = [ iconThemeVariant ];
|
||||||
# };
|
# };
|
||||||
|
isDarwin = system == "aarch64_darwin";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
stylix = {
|
stylix = {
|
||||||
@@ -59,8 +60,8 @@ in
|
|||||||
};
|
};
|
||||||
|
|
||||||
sizes = {
|
sizes = {
|
||||||
applications = 12;
|
applications = if isDarwin then 10 else 12;
|
||||||
desktop = 14;
|
desktop = if isDarwin then 12 else 14;
|
||||||
popups = config.stylix.fonts.sizes.desktop;
|
popups = config.stylix.fonts.sizes.desktop;
|
||||||
terminal = config.stylix.fonts.sizes.applications;
|
terminal = config.stylix.fonts.sizes.applications;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -31,9 +31,9 @@
|
|||||||
home = "/Users/mattjallen";
|
home = "/Users/mattjallen";
|
||||||
};
|
};
|
||||||
|
|
||||||
# nix = {
|
nix = {
|
||||||
# linux-builder.enable = true;
|
linux-builder.enable = true;
|
||||||
# };
|
};
|
||||||
|
|
||||||
nix-rosetta-builder = {
|
nix-rosetta-builder = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
@@ -38,7 +38,6 @@
|
|||||||
};
|
};
|
||||||
user = {
|
user = {
|
||||||
name = "matt";
|
name = "matt";
|
||||||
hashedPasswordFile = null;
|
|
||||||
mutableUsers = false;
|
mutableUsers = false;
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"docker"
|
"docker"
|
||||||
|
|||||||
Reference in New Issue
Block a user