Format
This commit is contained in:
parent
2b5a0d6a20
commit
85a94a1c4c
4 changed files with 30 additions and 27 deletions
|
@ -115,7 +115,8 @@
|
|||
nix-index-database.nixosModules.nix-index
|
||||
./modules
|
||||
];
|
||||
nixosSystem = system: name: let nixpkgs = nixpkgsForSystem system; in
|
||||
nixosSystem = system: name:
|
||||
let nixpkgs = nixpkgsForSystem system; in
|
||||
inputs.nixpkgs.lib.nixosSystem {
|
||||
lib = (import nixpkgs { inherit overlays system; }).lib;
|
||||
specialArgs = { modulesPath = toString (nixpkgs + "/nixos/modules"); };
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
home.packages = with pkgs; [ transmission-remote-gtk ];
|
||||
};
|
||||
|
||||
chvp.base.zfs.homeLinks = [ { path = ".config/transmission-remote-gtk"; type = "data"; } ];
|
||||
chvp.base.zfs.homeLinks = [{ path = ".config/transmission-remote-gtk"; type = "data"; }];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
(n: {
|
||||
fqdn = "del${toString (n + 1)}.vanpetegem.me";
|
||||
basicProxy = "http://localhost:${toString (8112 + n)}";
|
||||
}) config.chvp.services.deluge.count) ++ [
|
||||
})
|
||||
config.chvp.services.deluge.count) ++ [
|
||||
{ fqdn = "transmission.vanpetegem.me"; basicProxy = "http://localhost:9091"; }
|
||||
];
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ inputs, system, ... }: let
|
||||
{ inputs, system, ... }:
|
||||
let
|
||||
pkgs = import inputs.nixpkgs { inherit system; config = { android_sdk.accept_license = true; allowUnfree = true; }; overlays = [ inputs.devshell.overlays.default ]; };
|
||||
buildToolsVersion = "30.0.3";
|
||||
composed = pkgs.androidenv.composeAndroidPackages {
|
||||
|
@ -13,7 +14,7 @@
|
|||
'';
|
||||
};
|
||||
in
|
||||
pkgs.devshell.mkShell {
|
||||
pkgs.devshell.mkShell {
|
||||
name = "Orgzly";
|
||||
packages = [ pkgs.jdk17 pkgs.kotlin-language-server pkgs.nixpkgs-fmt ];
|
||||
env = [
|
||||
|
|
Loading…
Add table
Reference in a new issue