Remove substituters
This commit is contained in:
parent
11dfa3cc1a
commit
e78e1b4953
2 changed files with 9 additions and 15 deletions
|
|
@ -9,19 +9,9 @@ let
|
||||||
${pkgs.ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
|
${pkgs.ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
|
||||||
'';
|
'';
|
||||||
in {
|
in {
|
||||||
imports = [ ./backup.nix ];
|
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
|
||||||
substituters =
|
|
||||||
[ "https://nixcache.shelvacu.com" "https://fossar.cachix.org" ];
|
|
||||||
trusted-public-keys = [
|
|
||||||
"fossar.cachix.org-1:Zv6FuqIboeHPWQS7ysLCJ7UT7xExb4OE8c4LyGb5AsE="
|
|
||||||
"nixcache.shelvacu.com:73u5ZGBpPRoVZfgNJQKYYBt9K9Io/jPwgUfuOLsJbsM="
|
|
||||||
];
|
|
||||||
};
|
|
||||||
|
|
||||||
nix.gc = {
|
nix.gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
|
|
@ -140,7 +130,7 @@ in {
|
||||||
mullvad-vpn
|
mullvad-vpn
|
||||||
qbittorrent
|
qbittorrent
|
||||||
system-config-printer
|
system-config-printer
|
||||||
agenix.packages.${system}.default
|
agenix.packages.x86_64-linux.default
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
|
|
|
||||||
10
flake.nix
10
flake.nix
|
|
@ -15,10 +15,14 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { nixpkgs, phps, common, agenix, ... }: {
|
outputs = { nixpkgs, phps, common, agenix, ... }: {
|
||||||
nixosConfigurations.marauder = nixpkgs.lib.nixosSystem rec {
|
nixosConfigurations.marauder = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules =
|
modules = [
|
||||||
[ ./configuration.nix common.nixosModule agenix.nixosModules.default ];
|
./configuration.nix
|
||||||
|
./backup.nix
|
||||||
|
common.nixosModule
|
||||||
|
agenix.nixosModules.default
|
||||||
|
];
|
||||||
specialArgs = { inherit phps agenix; };
|
specialArgs = { inherit phps agenix; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue