Convert nix-dev to flake config.

This commit is contained in:
2023-11-26 07:48:58 +00:00
parent 15c8a3fbb0
commit db1f6baaf7
7 changed files with 66 additions and 1 deletions

View File

@@ -10,5 +10,6 @@
./sshd.nix
./user-ppetru.nix
./unattended-encryption.nix
./systemd-boot.nix
];
}

View File

@@ -1,7 +1,6 @@
{ pkgs, self, ... }:
{
imports = [
./boot.nix
./cpufreq.nix
./flakes.nix
./locale.nix

View File

@@ -0,0 +1,12 @@
{ pkgs, inputs, ... }:
{
imports = [
# not used for this profile but defines options used by the other imports
inputs.impermanence.nixosModules.impermanence
./cifs-client.nix
./consul.nix
./glusterfs-client.nix
./sshd.nix
./user-ppetru.nix
];
}