mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
finally on flake parts
just need to remove fup now
This commit is contained in:
parent
3b4057b366
commit
fdafb67215
20 changed files with 206 additions and 123 deletions
|
|
@ -1,13 +1,13 @@
|
|||
{utils}: let
|
||||
{utils, ...}: let
|
||||
nixosModules = utils.lib.exportModules [
|
||||
./nix.nix
|
||||
./pinentry-fix.nix
|
||||
./hm.nix
|
||||
./boot.nix
|
||||
./deploy.nix
|
||||
./keys.nix
|
||||
./secret.nix
|
||||
./deploy.nix
|
||||
./tailscale.nix
|
||||
./secret.nix
|
||||
];
|
||||
homeManagerModules = utils.lib.exportModules [
|
||||
./trayscale.nix
|
||||
|
|
@ -17,6 +17,7 @@
|
|||
nix
|
||||
hm
|
||||
boot
|
||||
keys
|
||||
deploy
|
||||
tailscale
|
||||
secret
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
c = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDStMNZgO26AhBz+GkwkMnnDL7nfhOblEMz+bXVaDM3M ssh@cleslie.uk"
|
||||
];
|
||||
{lib, ...}: {
|
||||
options.keys = lib.mkOption {
|
||||
default = import ../lib/keys.nix;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
{...}: {
|
||||
nix = {
|
||||
gc = {
|
||||
automatic = true;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
{...}: {
|
||||
imports = [../secrets/secrets-configuration.nix];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue