test: this is not working :,(

This commit is contained in:
ooks-io 2023-09-15 14:34:46 +12:00
parent 2fa8c8c00b
commit d100c2449f
7 changed files with 25 additions and 38 deletions

View file

@ -10,8 +10,4 @@
colorscheme = inputs.nix-colors.colorSchemes.everforest;
home.username = "ooks";
home.homeDirectory = "/home/ooks";
programs.home-manager.enable = true;
}
}

View file

@ -8,7 +8,7 @@
./starship.nix
./joshuto
./helix
# ./live-buds-cli.nix
./live-buds-cli.nix
];
home.packages = with pkgs; [
bc # Calculator

View file

@ -11,7 +11,7 @@ in
nixpkgs = {
config = {
#overlays = builtins.attrValues outputs.overlays;
overlays = builtins.attrValues outputs.overlays;
allowUnfree = true;
allowUnfreePredicate = (_: true);
permittedInsecurePackages = [
@ -38,8 +38,11 @@ in
homeDirectory = lib.mkDefault "/home/${config.home.username}";
stateVersion = lib.mkDefault "22.05";
sessionPath = [ "$HOME/.local/bin" ];
sessionVariables = {
FLAKE = "$HOME/.dotfiles/nix";
};
};
colorscheme = lib.mkDefault colorSchemes.everforest;
home.file.".colorscheme".text = config.colorscheme.slug;
}