Update flake lock

This commit is contained in:
Daniel Flanagan 2023-07-28 13:24:11 -05:00
parent df718624c5
commit 3e578a41b4
Signed by: lytedev
GPG Key ID: 5B2020A0F9921EF4
2 changed files with 3 additions and 6 deletions

View File

@ -1,17 +1,14 @@
# Welcome to my nix config! I'm just getting started with flakes, so please
# forgive the mess.
# TODO: would be nice to get hardware congigs in here as well
# TODO: declarative disks with https://github.com/nix-community/disko
# TODO: home-manager?
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
# TODO: this could be a tarball? fully recompiling this on every change suuuucks
# TODO: this could be a release tarball? fully recompiling this on every change suuuucks
api-lyte-dev.url = "git+ssh://gitea@git.lyte.dev/lytedev/api.lyte.dev.git";
home-manager = {

View File

@ -2,10 +2,9 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running 'nixos-help').
{ config, pkgs, ... }: rec {
{ pkgs, ... }: rec {
nix.settings.experimental-features = [ "nix-command" "flakes" ];
imports = [
# <sops-nix/modules/sops>
./beefcake-hardware.nix
];
@ -50,6 +49,7 @@
"api.lyte.dev" = {
path = "${services.api-lyte-dev.stateDir}/secrets.json";
# TODO: would be cool to assert that it's correctly-formatted JSON?
mode = "0440";
owner = services.api-lyte-dev.user;
group = services.api-lyte-dev.group;