cleaned up
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
|
||||||
termFont = "Monolisa"; # e.g., JetBrainsMono Nerd Font
|
termFont = "JetBrainsMono Nerd Font"; # e.g., JetBrainsMono Nerd Font
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ll = "ls -l";
|
ll = "ls -l";
|
||||||
@@ -27,6 +27,7 @@
|
|||||||
trustedUsers = [
|
trustedUsers = [
|
||||||
"lsoriano"
|
"lsoriano"
|
||||||
"@groups"
|
"@groups"
|
||||||
|
"biscuit"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildMachines = [
|
buildMachines = [
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
{pkgs, ...}: let
|
|
||||||
info = import ../info.nix;
|
|
||||||
in {
|
|
||||||
environment.systemPackages = info.apps pkgs;
|
|
||||||
}
|
|
||||||
@@ -1,4 +1,8 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
|
pkgs,
|
||||||
|
trustedUsers,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
# List packages installed in system profile. To search by name, run:
|
# List packages installed in system profile. To search by name, run:
|
||||||
# $ nix-env -qaP | grep wget
|
# $ nix-env -qaP | grep wget
|
||||||
environment.systemPackages = [pkgs.vim];
|
environment.systemPackages = [pkgs.vim];
|
||||||
@@ -10,7 +14,7 @@
|
|||||||
|
|
||||||
# Necessary for using flakes on this system.
|
# Necessary for using flakes on this system.
|
||||||
nix.settings.experimental-features = "nix-command flakes";
|
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.
|
# Create /etc/zshrc that loads the nix-darwin environment.
|
||||||
programs.zsh.enable = true; # default shell on catalina
|
programs.zsh.enable = true; # default shell on catalina
|
||||||
|
|||||||
Reference in New Issue
Block a user