fixing a LOT of typos
This commit is contained in:
parent
795bb17857
commit
b183b789b4
25 changed files with 57 additions and 65 deletions
|
@ -10,7 +10,7 @@ in
|
|||
xdg.enable = mkEnableOption "XDG-related conf" // { default = true; };
|
||||
};
|
||||
|
||||
config = mkIf conf.modules.develop.xdg.enable {
|
||||
config = mkIf config.modules.develop.xdg.enable {
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, options, lib, pkgs, ... }:
|
||||
{ inputs, config, options, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (lib.attrsets) attrValues;
|
||||
inherit (lib.modules) mkIf mkMerge;
|
||||
|
@ -12,7 +12,7 @@ in
|
|||
};
|
||||
|
||||
config = mkMerge [
|
||||
(mkIf config.modules.develop.rust.enable (
|
||||
(mkIf config.modules.develop.rust.enable {
|
||||
nixpkgs.overlays = [ inputs.rust.overlays.default ];
|
||||
|
||||
user.packages = attrValues {
|
||||
|
@ -24,7 +24,7 @@ in
|
|||
rs = "rustc";
|
||||
ca = "cargo";
|
||||
};
|
||||
))
|
||||
})
|
||||
|
||||
(mkIf config.modules.develop.cdg.enable {
|
||||
env = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue