configurations for my servers and desktops
nix nixos flake dots dotfiles

chore: fixes

+4 -1
+1
.gitignore
··· 1 + **/.DS_Store
+2 -1
modules/common/default.nix
··· 1 - {...}: { 1 + {pkgs, ...}: { 2 2 imports = [../users/devin.nix]; 3 3 4 4 nix = { ··· 13 13 nixpkgs.config.allowUnfree = true; 14 14 15 15 programs.fish.enable = true; 16 + environment.shells = [ pkgs.fish ]; 16 17 }
+1
modules/darwin/default.nix
··· 1 1 {lib, ...}: { 2 2 system.stateVersion = 6; 3 + system.primaryUser = "devin"; 3 4 nixpkgs.hostPlatform = lib.mkDefault "aarch64-darwin"; 4 5 5 6 homebrew = {