cleaned up

This commit is contained in:
biscuit
2025-06-06 07:46:05 -05:00
parent 2b8d4a1dce
commit e623b83d68
3 changed files with 8 additions and 8 deletions
+2 -1
View File
@@ -8,7 +8,7 @@
allowUnfree = true;
termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
shellAliases = {
ll = "ls -l";
@@ -27,6 +27,7 @@
trustedUsers = [
"lsoriano"
"@groups"
"biscuit"
];
buildMachines = [
-5
View File
@@ -1,5 +0,0 @@
{pkgs, ...}: let
info = import ../info.nix;
in {
environment.systemPackages = info.apps pkgs;
}
+6 -2
View File
@@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
trustedUsers,
...
}: {
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = [pkgs.vim];
@@ -10,7 +14,7 @@
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
nix.settings.trusted-users = ["@groups" "biscuit"];
nix.settings.trusted-users = trustedUsers;
# Create /etc/zshrc that loads the nix-darwin environment.
programs.zsh.enable = true; # default shell on catalina