Fixing macOS environment and fonts

This commit is contained in:
Gene Liverman 2023-09-12 11:47:17 -04:00
parent 5507d25639
commit 62588aba26
3 changed files with 35 additions and 36 deletions

44
flake.lock generated
View file

@ -17,26 +17,6 @@
"type": "github" "type": "github"
} }
}, },
"darwin": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1692248770,
"narHash": "sha256-tZeFpETKQGbgnaSIO1AGWD27IyTcBm4D+A9d7ulQ4NM=",
"owner": "lnl7",
"repo": "nix-darwin",
"rev": "511177ffe8226c78c9cf6a92a7b5f2df3684956b",
"type": "github"
},
"original": {
"owner": "lnl7",
"repo": "nix-darwin",
"type": "github"
}
},
"flake-utils": { "flake-utils": {
"inputs": { "inputs": {
"systems": "systems" "systems": "systems"
@ -76,6 +56,26 @@
} }
}, },
"nix-darwin": { "nix-darwin": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1694497842,
"narHash": "sha256-z03v/m0OwcLBok97KcUgMl8ZFw5Xwsi2z+n6nL7JdXY=",
"owner": "lnl7",
"repo": "nix-darwin",
"rev": "4496ab26628c5f43d2a5c577a06683c753e32fe2",
"type": "github"
},
"original": {
"owner": "lnl7",
"repo": "nix-darwin",
"type": "github"
}
},
"nix-darwin_2": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
}, },
@ -97,7 +97,7 @@
"inputs": { "inputs": {
"brew-src": "brew-src", "brew-src": "brew-src",
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nix-darwin": "nix-darwin", "nix-darwin": "nix-darwin_2",
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
@ -160,8 +160,8 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"darwin": "darwin",
"home-manager": "home-manager", "home-manager": "home-manager",
"nix-darwin": "nix-darwin",
"nix-homebrew": "nix-homebrew", "nix-homebrew": "nix-homebrew",
"nixpkgs": "nixpkgs_3" "nixpkgs": "nixpkgs_3"
} }

View file

@ -6,7 +6,7 @@
nixpkgs.url = "github:nixos/nixpkgs"; nixpkgs.url = "github:nixos/nixpkgs";
# Controls system level software and settings including fonts # Controls system level software and settings including fonts
darwin = { nix-darwin = {
url = "github:lnl7/nix-darwin"; url = "github:lnl7/nix-darwin";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
@ -21,7 +21,7 @@
nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew"; nix-homebrew.url = "github:zhaofengli-wip/nix-homebrew";
}; # end inputs }; # end inputs
outputs = { self, nixpkgs, darwin, home-manager, nix-homebrew, ... }: { outputs = { self, nixpkgs, nix-darwin, home-manager, nix-homebrew, ... }: {
nixosConfigurations.rainbow-planet = nixpkgs.lib.nixosSystem { nixosConfigurations.rainbow-planet = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
@ -41,7 +41,7 @@
}; # end nixosConfigurations }; # end nixosConfigurations
# This is only set to work with x86 macOS right now... that will need to be updated # This is only set to work with x86 macOS right now... that will need to be updated
darwinConfigurations.Blue-Rock = darwin.lib.darwinSystem { darwinConfigurations.Blue-Rock = nix-darwin.lib.darwinSystem {
system = "x86_64-darwin"; system = "x86_64-darwin";
pkgs = import nixpkgs { system = "x86_64-darwin"; }; pkgs = import nixpkgs { system = "x86_64-darwin"; };
modules = [ modules = [

View file

@ -37,12 +37,6 @@
]; ];
}; };
fonts.fontDir.enable = false; # True will uninstall other fonts, false installs, but doesn't uninstall
fonts.fonts = [ (pkgs.nerdfonts.override { fonts = [
"Hack"
"SourceCodePro"
]; }) ];
homebrew = { homebrew = {
enable = true; enable = true;
onActivation = { onActivation = {
@ -53,7 +47,7 @@
taps = [ taps = [
"hashicorp/tap" "hashicorp/tap"
# "homebrew/bundle" # "homebrew/bundle"
# "homebrew/cask-fonts" "homebrew/cask-fonts"
# "jandedobbeleer/oh-my-posh" # "jandedobbeleer/oh-my-posh"
"null-dev/firefox-profile-switcher" "null-dev/firefox-profile-switcher"
"puppetlabs/puppet" "puppetlabs/puppet"
@ -68,9 +62,9 @@
"cakebrew" "cakebrew"
"elgato-stream-deck" "elgato-stream-deck"
"firefox" "firefox"
# "font-hack-nerd-font" "font-hack-nerd-font"
# "font-inconsolata-g-for-powerline" "font-inconsolata-g-for-powerline"
# "font-source-code-pro-for-powerline" "font-source-code-pro-for-powerline"
"google-drive" "google-drive"
"iterm2" "iterm2"
"keepingyouawake" "keepingyouawake"
@ -116,7 +110,12 @@
''; '';
}; };
programs.zsh.enable = true;
services.nix-daemon.enable = true; services.nix-daemon.enable = true;
users.users."gene.liverman".home = "/Users/gene.liverman"; users.users."gene.liverman" = {
home = "/Users/gene.liverman";
shell = pkgs.zsh;
};
} }