More worf-config

This commit is contained in:
Felix Albrigtsen 2023-07-26 15:22:24 +02:00
parent fc2f95035d
commit 4f57fa36e3
3 changed files with 64 additions and 3 deletions

View File

@ -80,5 +80,9 @@
devShells.x86_64-linux = { devShells.x86_64-linux = {
default = nixpkgs.legacyPackages.x86_64-linux.callPackage ./shell.nix { }; default = nixpkgs.legacyPackages.x86_64-linux.callPackage ./shell.nix { };
}; };
devShells.aarch64-darwin = {
default = nixpkgs.legacyPackages.aarch64-darwin.callPackage ./shell.nix { };
};
}; };
} }

View File

@ -2,6 +2,17 @@
{ {
# Many settings should be handled by home manager. System-wide settings are however managed here. # Many settings should be handled by home manager. System-wide settings are however managed here.
nixpkgs.config.allowUnfree = true;
nix = {
gc = {
automatic = true;
options = "--delete-older-than 2d";
};
settings.experimental-features = ["nix-command" "flakes"];
};
# System packages for all users # System packages for all users
environment.systemPackages = [ environment.systemPackages = [
pkgs.ripgrep pkgs.ripgrep
@ -16,6 +27,50 @@
programs.zsh.enable = true; programs.zsh.enable = true;
system.activationScripts.postActivation.text = ''sudo chsh -s ${pkgs.zsh}/bin/zsh''; # Since it's not possible to declare default shell, run this command after build system.activationScripts.postActivation.text = ''sudo chsh -s ${pkgs.zsh}/bin/zsh''; # Since it's not possible to declare default shell, run this command after build
system.defaults = {
# login window settings
loginwindow = {
# disable guest account
GuestEnabled = false;
# show name instead of username
SHOWFULLNAME = false;
};
finder = {
AppleShowAllExtensions = true;
FXEnableExtensionChangeWarning = true;
_FXShowPosixPathInTitle = true;
};
# firewall settings
alf = {
# 0 = disabled 1 = enabled 2 = blocks all connections except for essential services
globalstate = 1;
loggingenabled = 0;
stealthenabled = 1;
};
# dock settings
dock = {
autohide = true;
autohide-delay = 0.0;
autohide-time-modifier = 1.0;
tilesize = 80;
static-only = false;
showhidden = false;
show-recents = false;
show-process-indicators = true;
orientation = "bottom";
mru-spaces = false;
};
};
system.keyboard = {
enableKeyMapping = true;
remapCapsLockToControl = true;
};
# Auto upgrade nix package and the daemon service. # Auto upgrade nix package and the daemon service.
services.nix-daemon.enable = true; services.nix-daemon.enable = true;
nix.package = pkgs.nix; nix.package = pkgs.nix;

View File

@ -7,9 +7,11 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
iterm2 discord
#element-desktop
exa exa
iterm2
neovim
vscode
]; ];
programs = { programs = {
@ -21,7 +23,7 @@
}; };
}; };
# symlinks don't work with finder + spotlight, copy them instead # Copy Applications to ~/Applications to allow them to be launched from Spotlight
disabledModules = [ "targets/darwin/linkapps.nix" ]; disabledModules = [ "targets/darwin/linkapps.nix" ];
home.activation = lib.mkIf pkgs.stdenv.isDarwin { home.activation = lib.mkIf pkgs.stdenv.isDarwin {
copyApplications = copyApplications =