Changes
2 changed files (+17/-13)
-
-
@@ -25,6 +25,10 @@ insert_final_newline = true[*.md] # Two trailing spaces represents a line break. trim_trailing_whitespace = false # Currently the only indentation used in this project is # Nix source code inside README.md. indent_style = space indent_size = 2 [*.{zig,zon}] # Zig insists on 4 spaces, ignoring accessibility problems.
-
-
-
@@ -41,20 +41,20 @@ Add this repository to Flake inputs then import `homeManagerModules.default`.```nix { inputs = { # ... plac = { # ... plac = { url = "git+https://codeberg.org/pocka/plac-for-gtk4.git"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { home-manager, plac, ... }: { homeConfigurations = { foo = home-manager.lib.homeManagerConfiguration { modules = [ plac.homeManagerModules.default ]; }; }; }; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { home-manager, plac, ... }: { homeConfigurations = { foo = home-manager.lib.homeManagerConfiguration { modules = [ plac.homeManagerModules.default ]; }; }; }; } ```
-