This commit is contained in:
Daniel Flanagan 2023-07-27 13:32:23 -05:00
parent 2bee29889e
commit c685350d50
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
1 changed files with 10 additions and 17 deletions

View File

@ -2,17 +2,12 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running 'nixos-help').
{ pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
{ pkgs, ... }: {
nix.settings.experimental-features = [ "nix-command" "flakes" ];
imports =
[
# <sops-nix/modules/sops>
./beefcake-hardware.nix
];
imports = [
# <sops-nix/modules/sops>
./beefcake-hardware.nix
];
sops = {
defaultSopsFile = ../secrets/example.yaml;
@ -40,7 +35,7 @@ in
# for use as a user password
# neededForUsers = true;
};
"myservice/my_subdir/my_secret" = {};
"myservice/my_subdir/my_secret" = { };
};
};
@ -136,8 +131,8 @@ in
# search for packages: `nix search $PACKAGE_NAME`
environment.systemPackages = with pkgs; [
unstable.helix
unstable.zellij
helix
zellij
mosh
btrfs-progs
iperf3
@ -312,7 +307,7 @@ in
dataDir = "/storage/postgres";
enableTCPIP = true;
package = unstable.postgresql_15;
package = pkgs.postgresql_15;
authentication = pkgs.lib.mkOverride 10 ''
#type database DBuser auth-method
@ -347,7 +342,6 @@ in
services.tailscale = {
enable = true;
package = unstable.tailscale;
};
services.jellyfin = {
@ -548,5 +542,4 @@ in
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
}
}