mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2024-12-23 00:36:32 +00:00
Compare commits
No commits in common. "90bd763b132e9d9b8f7971b65fdce6b761d1004e" and "e0a1f04b0f5cc6d860ba4a845026101942d4fe40" have entirely different histories.
90bd763b13
...
e0a1f04b0f
@ -18,8 +18,6 @@
|
|||||||
"lazyvim.plugins.extras.lang.typescript",
|
"lazyvim.plugins.extras.lang.typescript",
|
||||||
"lazyvim.plugins.extras.lang.vue",
|
"lazyvim.plugins.extras.lang.vue",
|
||||||
"lazyvim.plugins.extras.lang.yaml",
|
"lazyvim.plugins.extras.lang.yaml",
|
||||||
"lazyvim.plugins.extras.formatting.prettier",
|
|
||||||
"lazyvim.plugins.extras.formatting.biome",
|
|
||||||
"lazyvim.plugins.extras.ui.mini-animate",
|
"lazyvim.plugins.extras.ui.mini-animate",
|
||||||
"lazyvim.plugins.extras.util.dot",
|
"lazyvim.plugins.extras.util.dot",
|
||||||
"lazyvim.plugins.extras.util.startuptime"
|
"lazyvim.plugins.extras.util.startuptime"
|
||||||
|
@ -1,13 +0,0 @@
|
|||||||
return {
|
|
||||||
{
|
|
||||||
"rmagatti/auto-session",
|
|
||||||
lazy = false,
|
|
||||||
|
|
||||||
---enables autocomplete for opts
|
|
||||||
---@module "auto-session"
|
|
||||||
---@type AutoSession.Config
|
|
||||||
opts = {
|
|
||||||
suppressed_dirs = { "~/", "~/Desktop", "~/Downloads", "/" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
@ -33,7 +33,6 @@
|
|||||||
# $ darwin-rebuild changelog
|
# $ darwin-rebuild changelog
|
||||||
system.stateVersion = 5;
|
system.stateVersion = 5;
|
||||||
nixpkgs.hostPlatform = "aarch64-darwin";
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
||||||
nixpkgs.config.allowUnfree = true;
|
|
||||||
|
|
||||||
# Nix Darwin
|
# Nix Darwin
|
||||||
# https://daiderd.com/nix-darwin/manual/index.html
|
# https://daiderd.com/nix-darwin/manual/index.html
|
||||||
@ -42,7 +41,6 @@
|
|||||||
system.defaults.dock.autohide = true;
|
system.defaults.dock.autohide = true;
|
||||||
system.defaults.dock.orientation = "left";
|
system.defaults.dock.orientation = "left";
|
||||||
system.defaults.finder.AppleShowAllExtensions = true;
|
system.defaults.finder.AppleShowAllExtensions = true;
|
||||||
system.keyboard.enableKeyMapping = true;
|
|
||||||
system.keyboard.remapCapsLockToEscape = true;
|
system.keyboard.remapCapsLockToEscape = true;
|
||||||
system.defaults.NSGlobalDomain.InitialKeyRepeat = 25;
|
system.defaults.NSGlobalDomain.InitialKeyRepeat = 25;
|
||||||
system.defaults.NSGlobalDomain.KeyRepeat = 2;
|
system.defaults.NSGlobalDomain.KeyRepeat = 2;
|
||||||
@ -58,12 +56,6 @@
|
|||||||
|
|
||||||
homebrew.enable = true;
|
homebrew.enable = true;
|
||||||
homebrew.casks = import ./cask.nix;
|
homebrew.casks = import ./cask.nix;
|
||||||
# homebrew.taps = [
|
|
||||||
# "hashicorp/tap"
|
|
||||||
# ];
|
|
||||||
# homebrew.brews = [
|
|
||||||
# "hashicorp/tap/vault"
|
|
||||||
# ];
|
|
||||||
|
|
||||||
# Home Manager
|
# Home Manager
|
||||||
home-manager.backupFileExtension = "backup";
|
home-manager.backupFileExtension = "backup";
|
||||||
|
12
home.nix
12
home.nix
@ -1,3 +1,6 @@
|
|||||||
|
# home.nix
|
||||||
|
# home-manager switch
|
||||||
|
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -8,6 +11,12 @@
|
|||||||
home.username = "niccoloborgioli";
|
home.username = "niccoloborgioli";
|
||||||
home.homeDirectory = "/Users/niccoloborgioli";
|
home.homeDirectory = "/Users/niccoloborgioli";
|
||||||
|
|
||||||
|
# home.sessionPath = [
|
||||||
|
# "/run/current-system/sw/bin"
|
||||||
|
# "$HOME/.nix-profile/bin"
|
||||||
|
# ];
|
||||||
|
|
||||||
|
# Makes sense for user specific applications that shouldn't be available system-wide
|
||||||
home.packages = [
|
home.packages = [
|
||||||
pkgs.tmux
|
pkgs.tmux
|
||||||
pkgs.oh-my-posh
|
pkgs.oh-my-posh
|
||||||
@ -41,9 +50,6 @@
|
|||||||
pkgs.nixfmt-rfc-style
|
pkgs.nixfmt-rfc-style
|
||||||
pkgs.fnm
|
pkgs.fnm
|
||||||
|
|
||||||
# sflx
|
|
||||||
pkgs.vault
|
|
||||||
|
|
||||||
(pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
(pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user