my NixOS and nix-darwin config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: get aerospace back

+59 -31
+28 -12
flake.lock
··· 1 1 { 2 2 "nodes": { 3 + "crane": { 4 + "locked": { 5 + "lastModified": 1775236976, 6 + "narHash": "sha256-gCgX+AXN7K1gAIEqcLcZHxmC+QoZcwn9m6Z9r2Az+N8=", 7 + "owner": "ipetkov", 8 + "repo": "crane", 9 + "rev": "6c23998526351a53ce734f0ac84940da988ccef1", 10 + "type": "github" 11 + }, 12 + "original": { 13 + "owner": "ipetkov", 14 + "repo": "crane", 15 + "type": "github" 16 + } 17 + }, 3 18 "darwin": { 4 19 "inputs": { 5 20 "nixpkgs": [ ··· 44 59 }, 45 60 "filaments": { 46 61 "inputs": { 62 + "crane": "crane", 47 63 "fenix": "fenix", 48 64 "nixpkgs": "nixpkgs" 49 65 }, 50 66 "locked": { 51 - "lastModified": 1775422626, 52 - "narHash": "sha256-P3gTHM00SCIz36k8xZjwJ6kcXxBL7cCjm+fylWmL45o=", 67 + "lastModified": 1775536315, 68 + "narHash": "sha256-jIIJQe3fQTVLXtQfBnq1/Lbgxy4TZ0n4YBWHLI6qmj8=", 53 69 "owner": "suri-codes", 54 70 "repo": "filaments", 55 - "rev": "01291483ef1efe886e64ac78c314041e0fc3b329", 71 + "rev": "7764623ac1b48228f0b8c64aa3bc90beafc0d241", 56 72 "type": "github" 57 73 }, 58 74 "original": { ··· 67 83 "rust-overlay": "rust-overlay" 68 84 }, 69 85 "locked": { 70 - "lastModified": 1775396817, 71 - "narHash": "sha256-F1YgQKaE/4N585ghkNQRmNs0kSLWZlHMnX3ud9p+GJ4=", 86 + "lastModified": 1775526203, 87 + "narHash": "sha256-9xj+2fdL/8yAxfB+KezVU6S01oVcmGQbo62brSznb/A=", 72 88 "owner": "helix-editor", 73 89 "repo": "helix", 74 - "rev": "98ad5dbf5654f6ca02e504ebc695e3fdc5623afe", 90 + "rev": "f7909f1f90a004ca309bda2bee366de1165dd168", 75 91 "type": "github" 76 92 }, 77 93 "original": { ··· 87 103 ] 88 104 }, 89 105 "locked": { 90 - "lastModified": 1775360939, 91 - "narHash": "sha256-XUBlSgUFdvTh6+K5LcI5mJu5F5L8scmJDMRiZM484TM=", 106 + "lastModified": 1775457580, 107 + "narHash": "sha256-ikws/ssAmG20AGrEwBuwspwPlkubJu34mB+Uz2fJBJs=", 92 108 "owner": "nix-community", 93 109 "repo": "home-manager", 94 - "rev": "2097a5c82bdc099c6135eae4b111b78124604554", 110 + "rev": "5de7dbd151b0bd65d45785553d4a22d832733ffc", 95 111 "type": "github" 96 112 }, 97 113 "original": { ··· 132 148 }, 133 149 "nixpkgs_3": { 134 150 "locked": { 135 - "lastModified": 1775036866, 136 - "narHash": "sha256-ZojAnPuCdy657PbTq5V0Y+AHKhZAIwSIT2cb8UgAz/U=", 151 + "lastModified": 1775423009, 152 + "narHash": "sha256-vPKLpjhIVWdDrfiUM8atW6YkIggCEKdSAlJPzzhkQlw=", 137 153 "owner": "nixos", 138 154 "repo": "nixpkgs", 139 - "rev": "6201e203d09599479a3b3450ed24fa81537ebc4e", 155 + "rev": "68d8aa3d661f0e6bd5862291b5bb263b2a6595c9", 140 156 "type": "github" 141 157 }, 142 158 "original": {
+6 -1
hosts/Daedalus/default.nix
··· 22 22 homebrew = { 23 23 enable = true; 24 24 25 + taps = [ 26 + "nikitabobko/tap" 27 + ]; 28 + 25 29 brews = [ 26 30 "mas" 27 31 # terminal handling stuff ··· 39 43 casks = [ 40 44 "ghostty@tip" 41 45 # "db-browser-for-sqlite" 46 + "nikitabobko/tap/aerospace" # fully-qualified if needed 42 47 "zen" 43 48 "zed" 44 49 "discord" ··· 62 67 onActivation = { 63 68 autoUpdate = true; 64 69 upgrade = true; 65 - cleanup = "zap"; 70 + # cleanup = "zap"; 66 71 }; 67 72 }; 68 73
+1
modules/home/term/ghostty/ghostty/config
··· 118 118 keybind = super+8=unbind 119 119 keybind = super+9=unbind 120 120 keybind = super+f=unbind 121 + 121 122 theme = Catppuccin Mocha
+2 -2
modules/home/tools/helix/helix/themes/nyx.toml
··· 1 1 inherits = "catppuccin_mocha" 2 2 3 3 4 - "ui.background" = { bg = "#0B0E14" } 5 - "ui.statusline" = { bg = "#0B0E14" } 4 + # "ui.background" = { bg = "#0B0E14" } 5 + # "ui.statusline" = { bg = "#0B0E14" }
+22 -16
modules/home/wm/aerospace/default.nix
··· 1 - { lib, pkgs, config, ... }: 1 + { 2 + lib, 3 + pkgs, 4 + config, 5 + ... 6 + }: 2 7 with lib; 3 - let cfg = config.nyx.aerospace; 4 - in { 8 + let 9 + cfg = config.nyx.aerospace; 10 + in 11 + { 5 12 options.nyx.aerospace = { 6 13 enable = mkEnableOption "AeroSpace window manager"; 7 14 }; 8 15 config = mkIf (cfg.enable && pkgs.stdenv.isDarwin) { 9 - home.packages = [ pkgs.aerospace ]; 16 + # home.packages = [ pkgs.aerospace ]; 10 17 11 18 home.file.".aerospace.toml".source = 12 - config.lib.file.mkOutOfStoreSymlink 13 - "${config.home.homeDirectory}/nyx/modules/home/wm/aerospace/aerospace.toml"; 19 + config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nyx/modules/home/wm/aerospace/aerospace.toml"; 14 20 15 - launchd.agents.aerospace = { 16 - enable = true; 17 - config = { 18 - ProgramArguments = [ "${pkgs.aerospace}/bin/aerospace" ]; 19 - KeepAlive = true; 20 - RunAtLoad = true; 21 - StandardOutPath = "/tmp/aerospace.out.log"; 22 - StandardErrorPath = "/tmp/aerospace.err.log"; 23 - }; 24 - }; 21 + # launchd.agents.aerospace = { 22 + # enable = true; 23 + # config = { 24 + # ProgramArguments = [ "${pkgs.aerospace}/bin/aerospace" ]; 25 + # KeepAlive = true; 26 + # RunAtLoad = true; 27 + # StandardOutPath = "/tmp/aerospace.out.log"; 28 + # StandardErrorPath = "/tmp/aerospace.err.log"; 29 + # }; 30 + # }; 25 31 }; 26 32 }