this repo has no description
0
fork

Configure Feed

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

neovim stuff :P

+34 -2
+1 -2
flake.nix
··· 28 28 pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; 29 29 in { 30 30 nixosConfigurations = { 31 - nixos = nixpkgs.lib.nixosSystem { 31 + mars = nixpkgs.lib.nixosSystem { 32 32 inherit system; 33 33 specialArgs = { 34 34 inherit inputs; ··· 43 43 inherit inputs; 44 44 }; 45 45 home-manager.users.hannah = { 46 - 47 46 imports = [ 48 47 ./home.nix 49 48 ];
+7
home.nix
··· 40 40 }; 41 41 42 42 home = { 43 + sessionPath = [ 44 + "$HOME/.local/bin" 45 + ]; 46 + 43 47 packages = with pkgs; [ 44 48 vivaldi 45 49 steam ··· 62 66 sdk_10_0 63 67 ] 64 68 ) 69 + cargo 70 + rustc 65 71 66 72 # nvim 67 73 neovim 68 74 gcc 69 75 ripgrep 70 76 unzip 77 + fd 71 78 72 79 # quickshell deps 73 80 quickshell
+26
hosts/mars/configuration.nix
··· 109 109 git 110 110 gnumake 111 111 brightnessctl 112 + nix-ld 113 + ]; 114 + 115 + programs.nix-ld.enable = true; 116 + programs.nix-ld.libraries = with pkgs; [ 117 + # Add any missing dynamic libraries for unpackaged programs 118 + # here, NOT in environment.systemPackages 112 119 ]; 113 120 114 121 programs.steam = { ··· 119 126 120 127 programs.neovim = { 121 128 enable = true; 129 + }; 130 + 131 + fonts = { 132 + packages = with pkgs; [ 133 + fira-code 134 + jetbrains-mono 135 + twitter-color-emoji 136 + material-symbols 137 + ] 138 + ++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts); 139 + 140 + fontconfig = { 141 + defaultFonts = { 142 + monospace = [ "JetBrainsMono Nerd Font" ]; 143 + sansSerif = [ "Roboto Nerd Font" ]; 144 + serif = [ "Roboto Nerd Font" ]; 145 + emoji = [ "Twitter Color Emoji" ]; 146 + }; 147 + }; 122 148 }; 123 149 124 150 # This value determines the NixOS release from which the default