mirror of
				https://github.com/Jokiller230/puzzlevision.git
				synced 2025-10-31 05:40:05 +00:00 
			
		
		
		
	refactor: clean up unused imports
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
This commit is contained in:
		
							parent
							
								
									4966b26ec4
								
							
						
					
					
						commit
						e1bbf4856e
					
				
					 20 changed files with 9 additions and 115 deletions
				
			
		|  | @ -45,9 +45,6 @@ | ||||||
|       src = ./.; # "src" must point to the root of the flake. |       src = ./.; # "src" must point to the root of the flake. | ||||||
| 
 | 
 | ||||||
|       snowfall = { |       snowfall = { | ||||||
|         # "root" can be used, to tell Snowfall Lib where to look for Nix files. |  | ||||||
|         # root = ./nix; |  | ||||||
| 
 |  | ||||||
|         # Namespace for this flake's packages, library and overlays. |         # Namespace for this flake's packages, library and overlays. | ||||||
|         namespace = "puzzlevision"; |         namespace = "puzzlevision"; | ||||||
| 
 | 
 | ||||||
|  | @ -58,7 +55,7 @@ | ||||||
|       }; |       }; | ||||||
| 
 | 
 | ||||||
|       channels-config = { |       channels-config = { | ||||||
|         allowUnfree = true; # Allow unfree packages. |         allowUnfree = true; | ||||||
|       }; |       }; | ||||||
| 
 | 
 | ||||||
|       # Apply some NixOS modules globally. |       # Apply some NixOS modules globally. | ||||||
|  |  | ||||||
|  | @ -1,7 +1,6 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
|  |  | ||||||
|  | @ -1,8 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |  | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |  | ||||||
|   config, |  | ||||||
|   ... |   ... | ||||||
| }: { | }: { | ||||||
|   home.packages = with pkgs.gnomeExtensions; [ |   home.packages = with pkgs.gnomeExtensions; [ | ||||||
|  |  | ||||||
|  | @ -1,8 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |  | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |  | ||||||
|   config, |  | ||||||
|   ... |   ... | ||||||
| }: { | }: { | ||||||
|   programs.vscode = { |   programs.vscode = { | ||||||
|  | @ -23,6 +20,7 @@ | ||||||
|     userSettings = { |     userSettings = { | ||||||
|       "nix.enableLanguageServer" = true; |       "nix.enableLanguageServer" = true; | ||||||
|       "nix.serverPath" = "nil"; |       "nix.serverPath" = "nil"; | ||||||
|  |       "workbench.colorTheme" = "Catppuccin Macchiato"; | ||||||
|     }; |     }; | ||||||
|   }; |   }; | ||||||
| } | } | ||||||
|  | @ -1,22 +1,7 @@ | ||||||
| { | { | ||||||
|   # Snowfall Lib provides a customized `lib` instance with access to your flake's library |  | ||||||
|   # as well as the libraries available from your flake's inputs. |  | ||||||
|   lib, |   lib, | ||||||
|   # Instance of `pkgs` with overlays and custom packages applied. |  | ||||||
|   pkgs, |   pkgs, | ||||||
|   # All flake inputs. |   namespace, | ||||||
|   inputs, |  | ||||||
| 
 |  | ||||||
|   # Additional metadata, provided by Snowfall Lib. |  | ||||||
|   namespace, # The flake namespace, set in flake.nix. If not set, defaults to "internal". |  | ||||||
|   home, # The home architecture for this host (eg. `x86_64-linux`). |  | ||||||
|   target, # The Snowfall Lib target for this home (eg. `x86_64-home`). |  | ||||||
|   format, # A normalized name for the home target (eg. `home`). |  | ||||||
|   virtual, # A boolean to determine whether this home is a virtual target using nixos-generators. |  | ||||||
|   host, # The host name for this home. |  | ||||||
| 
 |  | ||||||
|   # All other arguments come from the home home. |  | ||||||
|   config, |  | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
| { | { | ||||||
|  | @ -58,6 +43,7 @@ | ||||||
|     devenv |     devenv | ||||||
|     python39 |     python39 | ||||||
|     nil |     nil | ||||||
|  |     zed-editor | ||||||
| 
 | 
 | ||||||
|     ### Rust development specific |     ### Rust development specific | ||||||
|     rustup |     rustup | ||||||
|  | @ -74,7 +60,5 @@ | ||||||
|     sidequest |     sidequest | ||||||
|   ]; |   ]; | ||||||
| 
 | 
 | ||||||
|   #puzzlevision.apps.zed-editor.enable = true; |  | ||||||
| 
 |  | ||||||
|   home.stateVersion = "24.05"; |   home.stateVersion = "24.05"; | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -1,26 +0,0 @@ | ||||||
| { |  | ||||||
|   lib, |  | ||||||
|   pkgs, |  | ||||||
|   inputs, |  | ||||||
|   namespace, |  | ||||||
|   config, |  | ||||||
|   ... |  | ||||||
| }: with lib; with lib.${namespace}; |  | ||||||
| let |  | ||||||
|   cfg = config.apps.zed-editor; |  | ||||||
| 
 |  | ||||||
|   zed-fhs = pkgs.buildFHSUserEnv { |  | ||||||
|     name = "zed"; |  | ||||||
|     targetPkgs = pkgs: |  | ||||||
|     with pkgs; [ |  | ||||||
|       zed-editor |  | ||||||
|     ]; |  | ||||||
|     runScript = "zed"; |  | ||||||
|   }; |  | ||||||
| in { |  | ||||||
|   options.apps.zed-editor = { enable = mkEnableOption "zed-editor"; }; |  | ||||||
| 
 |  | ||||||
|   config = mkIf cfg.enable { |  | ||||||
|     home.packages = [zed-fhs]; |  | ||||||
|   }; |  | ||||||
| } |  | ||||||
|  | @ -1,9 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |  | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |  | ||||||
|   namespace, |  | ||||||
|   config, |  | ||||||
|   ... |   ... | ||||||
| }: { | }: { | ||||||
|   home.packages = with pkgs; [ |   home.packages = with pkgs; [ | ||||||
|  |  | ||||||
|  | @ -1,6 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -1,6 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -1,6 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   inputs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -3,7 +3,6 @@ | ||||||
|   pkgs, |   pkgs, | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   options, |  | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
| let | let | ||||||
|  |  | ||||||
|  | @ -1,15 +1,6 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   namespace, | ||||||
|   inputs, |  | ||||||
| 
 |  | ||||||
|   namespace, # The flake namespace, set in flake.nix. If not set, defaults to "internal". |  | ||||||
|   system, # The system architecture for this host (eg. `x86_64-linux`). |  | ||||||
|   target, # The Snowfall Lib target for this system (eg. `x86_64-iso`). |  | ||||||
|   format, # A normalized name for the system target (eg. `iso`). |  | ||||||
|   virtual, # A boolean to determine whether this system is a virtual target using nixos-generators. |  | ||||||
|   systems, # An attribute map of your defined hosts. |  | ||||||
| 
 |  | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
|  |  | ||||||
|  | @ -1,6 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   inputs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -1,6 +1,5 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   inputs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -1,14 +1,6 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   namespace, | ||||||
|   inputs, |  | ||||||
| 
 |  | ||||||
|   namespace, # The flake namespace, set in flake.nix. If not set, defaults to "internal". |  | ||||||
|   system, # The system architecture for this host (eg. `x86_64-linux`). |  | ||||||
|   target, # The Snowfall Lib target for this system (eg. `x86_64-iso`). |  | ||||||
|   format, # A normalized name for the system target (eg. `iso`). |  | ||||||
|   virtual, # A boolean to determine whether this system is a virtual target using nixos-generators. |  | ||||||
|   systems, # An attribute map of your defined hosts. |  | ||||||
| 
 | 
 | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -1,7 +1,6 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |  | ||||||
|   namespace, |   namespace, | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
|  |  | ||||||
|  | @ -1,15 +1,6 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   namespace, | ||||||
|   inputs, |  | ||||||
| 
 |  | ||||||
|   namespace, # The flake namespace, set in flake.nix. If not set, defaults to "internal". |  | ||||||
|   system, # The system architecture for this host (eg. `x86_64-linux`). |  | ||||||
|   target, # The Snowfall Lib target for this system (eg. `x86_64-iso`). |  | ||||||
|   format, # A normalized name for the system target (eg. `iso`). |  | ||||||
|   virtual, # A boolean to determine whether this system is a virtual target using nixos-generators. |  | ||||||
|   systems, # An attribute map of your defined hosts. |  | ||||||
| 
 |  | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
|  |  | ||||||
|  | @ -1,15 +1,7 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |   namespace, | ||||||
| 
 |  | ||||||
|   namespace, # The flake namespace, set in flake.nix. If not set, defaults to "internal". |  | ||||||
|   system, # The system architecture for this host (eg. `x86_64-linux`). |  | ||||||
|   target, # The Snowfall Lib target for this system (eg. `x86_64-iso`). |  | ||||||
|   format, # A normalized name for the system target (eg. `iso`). |  | ||||||
|   virtual, # A boolean to determine whether this system is a virtual target using nixos-generators. |  | ||||||
|   systems, # An attribute map of your defined hosts. |  | ||||||
| 
 |  | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
|  |  | ||||||
|  | @ -1,15 +1,6 @@ | ||||||
| { | { | ||||||
|   lib, |   lib, | ||||||
|   pkgs, |   namespace, | ||||||
|   inputs, |  | ||||||
| 
 |  | ||||||
|   namespace, # The flake namespace, set in flake.nix. If not set, defaults to "internal". |  | ||||||
|   system, # The system architecture for this host (eg. `x86_64-linux`). |  | ||||||
|   target, # The Snowfall Lib target for this system (eg. `x86_64-iso`). |  | ||||||
|   format, # A normalized name for the system target (eg. `iso`). |  | ||||||
|   virtual, # A boolean to determine whether this system is a virtual target using nixos-generators. |  | ||||||
|   systems, # An attribute map of your defined hosts. |  | ||||||
| 
 |  | ||||||
|   config, |   config, | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
|  |  | ||||||
|  | @ -3,7 +3,6 @@ | ||||||
|   pkgs, |   pkgs, | ||||||
|   inputs, |   inputs, | ||||||
|   namespace, |   namespace, | ||||||
|   config, |  | ||||||
|   ... |   ... | ||||||
| }: with lib; with lib.${namespace}; | }: with lib; with lib.${namespace}; | ||||||
| { | { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue