feat: add nix-on-droid to flake

This commit is contained in:
matt1432 2023-12-08 14:59:44 -05:00
parent 13f0062331
commit 75a52aa5ae
5 changed files with 273 additions and 5 deletions

View file

@ -13,11 +13,13 @@ with lib; let
nvim-treesitter-hypr = tree-sitter-hypr-flake.packages.${pkgs.system}.default;
coc-stylelintplus = coc-stylelintplus-flake.packages.${pkgs.system}.default;
in {
home.packages = optionalAttrs nvimIde (with pkgs; [
gradle
gradle-completion # FIXME: not working
alejandra
]);
home = optionalAttrs nvimIde {
packages = with pkgs; [
gradle
gradle-completion # FIXME: not working
alejandra
];
};
xdg.dataFile = optionalAttrs nvimIde {
".gradle/gradle.properties".text = ''

80
common/nix-on-droid.nix Normal file
View file

@ -0,0 +1,80 @@
{
config,
nixpkgs,
nur,
pkgs,
...
}: {
imports = [
./vars.nix
./pkgs
nur.nixosModules.nur
];
nix = {
# Edit nix.conf
extraOptions = ''
experimental-features = nix-command flakes
keep-outputs = true
keep-derivations = true
auto-optimise-store = true
warn-dirty = false
'';
# Minimize dowloads of indirect nixpkgs flakes
registry.nixpkgs = {
flake = nixpkgs;
exact = false;
};
substituters = [
# Neovim and stuff
"https://nix-community.cachix.org"
];
trustedPublicKeys = [
# Neovim and stuff
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
];
};
# Global hm settings
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
config = {
imports = [
# Make the vars be the same on Nix and HM
./vars.nix
{vars = config.vars;}
nur.hmModules.nur
./home
./pkgs
];
home.packages =
[
config.customPkgs.repl
]
++ (with pkgs.nodePackages; [
undollar
])
++ (with pkgs; [
dracula-theme
neofetch
progress
wget
tree
mosh
rsync
killall
imagemagick
usbutils
]);
home.stateVersion = "23.05";
};
};
}