Compare commits

...

3 Commits

Author SHA1 Message Date
Olaf 126b92831a Bitwarden broke and now stable 26.05 2026-05-31 09:28:21 +02:00
Olaf 07aafd820c Bitwarden path in dock 2026-05-27 11:32:14 +02:00
Olaf 5111cb4178 Now running unstable.... 2026-05-12 10:52:51 +02:00
8 changed files with 101 additions and 63 deletions
+7 -6
View File
@@ -2,7 +2,8 @@
description = "Starter Configuration with secrets (removed) for MacOS and NixOS";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs//nixpkgs-25.11-darwin";
url = "github:nixos/nixpkgs//nixpkgs-26.05-darwin";
# url = "github:nixos/nixpkgs/nixpkgs-unstable";
};
home-manager = {
url = "github:nix-community/home-manager";
@@ -11,7 +12,8 @@
url = "github:nix-community/nixd";
};
darwin = {
url = "github:nix-darwin/nix-darwin/nix-darwin-25.11";
# url = "github:nix-darwin/nix-darwin";
url = "github:nix-darwin/nix-darwin/nix-darwin-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-homebrew = {
@@ -40,7 +42,7 @@
nix-vscode-extensions = {
url = "github:nix-community/nix-vscode-extensions";
};
catppuccin= {
catppuccin = {
url = "github:catppuccin/nix";
};
@@ -125,8 +127,7 @@
{
devShells = forAllSystems devShell;
apps =
nixpkgs.lib.genAttrs linuxSystems mkLinuxApps
// nixpkgs.lib.genAttrs darwinSystems mkDarwinApps;
nixpkgs.lib.genAttrs linuxSystems mkLinuxApps // nixpkgs.lib.genAttrs darwinSystems mkDarwinApps;
darwinConfigurations = nixpkgs.lib.genAttrs darwinSystems (
system:
@@ -151,7 +152,7 @@
autoMigrate = true;
};
home-manager.sharedModules = [
# mac-app-util.homeManagerModules.default
# mac-app-util.homeManagerModules.default
catppuccin.homeModules.catppuccin
];
+4 -2
View File
@@ -39,7 +39,9 @@ in
"https://nix-community.cachix.org"
"https://cache.nixos.org"
];
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
gc = {
@@ -79,7 +81,7 @@ in
(emacsWithPackagesFromUsePackage {
config = ../config/emacs/emacs.el;
defaultInitFile = true;
package = emacs-unstable;
package = emacs;
alwaysEnsure = true;
extraEmacsPackages = epkgs: with epkgs; [
magit
+2 -1
View File
@@ -62,7 +62,8 @@ in
"https://nix-community.cachix.org"
"https://cache.nixos.org"
];
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" ];
trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" ];
};
package = pkgs.nix;
+4
View File
@@ -27,10 +27,12 @@ _:
# Utility Tools
"blackhole-16ch"
"blackhole-2ch"
"box-drive"
"box-tools"
"daisydisk"
"karabiner-elements"
"keybase"
"spamsieve"
@@ -49,6 +51,7 @@ _:
# Productivity Tools
"1Password"
"bitwarden"
"calibre"
"dbeaver-community"
"element"
@@ -56,6 +59,7 @@ _:
"macdown"
"mailmate"
"orcaslicer"
"remanager"
"qmk-toolbox"
"smartsheet"
"spamsieve"
+3 -2
View File
@@ -51,7 +51,7 @@ in
"Affinity Designer 2" = 1616831348;
"Affinity Photo 2: Image Editor" = 1616822987;
"Affinity Publisher 2" = 1606941598;
"DaisyDisk" = 411643860; # (4.32)
# "DaisyDisk" = 411643860; # (4.32) # Don't use this, we need the official version that is not sandboxed
"Fantastical - Calendar" = 975937182;
"Home Assistant" = 1099568401; # (2025.7.1)
"Ice Cubes for Mastodon" = 6444915884; # (1.11.3)
@@ -95,6 +95,7 @@ in
} // import ../shared/home-manager.nix { inherit config pkgs lib; };
catppuccin = {
autoEnable = true;
enable = true;
flavor = "mocha";
};
@@ -126,7 +127,7 @@ in
{ path = "/System/Applications/Mail.app/"; }
{ path = "/Applications/MailMate.app/"; }
{ path = "/Applications/1Password.app/"; }
{ path = "/run/current-system/Applications/Bitwarden.app/"; }
{ path = "/Applications/Bitwarden.app"; }
{ path = "/Applications/Calendar.app/"; }
{ path = "/Applications/Notes.app/"; }
{ path = "/run/current-system/Applications/Firefox.app/"; }
+5 -2
View File
@@ -1,7 +1,7 @@
{ config, pkgs, ... }:
let
emacsOverlaySha256 = "11p1c1l04zrn8dd5w8zyzlv172z05dwi9avbckav4d5fk043m754";
emacsOverlaySha256 = "1hr951gdyqymb1rlkpxb09cx02a6h99sd9fsk7744hvqsdpz5hd6";
in
{
home-manager.backupFileExtension = "nix-backup";
@@ -11,6 +11,9 @@ in
allowBroken = true;
allowInsecure = false;
allowUnsupportedSystem = true;
permittedInsecurePackages = [
"electron-39.8.10"
];
};
overlays =
@@ -22,7 +25,7 @@ in
(attrNames (readDir path)))
++ [(import (builtins.fetchTarball {
url = "https://github.com/dustinlyons/emacs-overlay/archive/refs/heads/master.tar.gz";
url = "https://github.com/nix-community/emacs-overlay/archive/master.tar.gz";
sha256 = emacsOverlaySha256;
}))];
};
+6 -6
View File
@@ -313,7 +313,8 @@ in
enable = true;
enableDefaultConfig = false;
matchBlocks."*" = {
settings= {
"*" = {
forwardAgent = false;
addKeysToAgent = "no";
compression = false;
@@ -325,17 +326,16 @@ in
controlPath = "~/.ssh/master-%r@%n:%p";
controlPersist = "no";
};
includes = [
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux "/home/${user}/.ssh/config_external")
(lib.mkIf pkgs.stdenv.hostPlatform.isDarwin "/Users/${user}/.ssh/config_external")
];
matchBlocks = {
"moonunit.kolkman.org" = {
hostname = "moonunit.kolkman.org";
user = "root";
port = 2222;
};
};
includes = [
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux "/home/${user}/.ssh/config_external")
(lib.mkIf pkgs.stdenv.hostPlatform.isDarwin "/Users/${user}/.ssh/config_external")
];
};
tmux = {
+46 -20
View File
@@ -9,11 +9,11 @@ with pkgs;
# The Web Browsers
brave
firefox
# google-chrome. #stopped working
# google-chrome. #stopped working
# security and some such
bitwarden-desktop
# bitwarden-cli
# bitwarden-desktop #Does not compile properly
bitwarden-cli
yubikey-manager # provides ykman
pinentry_mac
@@ -32,8 +32,8 @@ with pkgs;
minicom
mtr
ncdu
neofetch
nixfmt-rfc-style
fastfetch
nixfmt
openssh
postgresql
sqlite
@@ -51,14 +51,13 @@ with pkgs;
cmake
dfu-util
go
jd-diff-patch #json diff patch
jd-diff-patch # json diff patch
jq # json tool
llvm
nasm
ninja
pkg-config
# Encryption and security tools
age
gnupg
@@ -76,15 +75,15 @@ with pkgs;
fd
ffmpeg
font-awesome
# jetbrains-mono
hack-font
meslo-lgs-nf
noto-fonts
noto-fonts-color-emoji
# Node.js development tools
nodePackages.npm # globally install npm
nodePackages.prettier
#nodePackages.npm # globally install npm
#nodePackages.prettier
# Text and terminal utilities
xterm
@@ -92,8 +91,7 @@ with pkgs;
htop
hunspell
iftop
# inetutils # includes Telnet
jetbrains-mono
inetutils # includes Telnet
jq
ripgrep
tmux
@@ -107,21 +105,49 @@ with pkgs;
# python3
virtualenv
(python3.withPackages (python-pkgs: with python-pkgs; [
(python3.withPackages (
python-pkgs: with python-pkgs; [
bidict
blinker
certifi
charset-normalizer
click
flask
flask-socketio
h11
idna
importlib-metadata
itsdangerous
jinja2
markupsafe
mercantile
mlx-lm
numpy
pandas
pillow
pillow
python-engineio
python-socketio
requests
requests
shapely
simple-websocket
tkinter
tqdm
urllib3
werkzeug
wsproto
zipp
]
))
]))
# LLM
ollama
# LLM
ollama
# Social
pidgin
# Social
pidgin
# Rust Related
rustc