Remove unused

This commit is contained in:
Christopher Mühl 2026-01-06 03:17:00 +01:00
parent 0d17a0baf1
commit a7494307a1
No known key found for this signature in database
GPG key ID: 925AC7D69955293F
3 changed files with 0 additions and 46 deletions

View file

@ -1,21 +0,0 @@
{pkgs, ...}: {
# This module is common to all systems, both nixos and darwin. It is
# automatically added to all hosts via the flake configuration.
imports = [
./elements.nix
./secrets.nix
./nix.nix
./programs/home-manager.nix
];
environment.systemPackages = with pkgs; [
pre-commit
git
gitleaks
just
nh
age
];
}

View file

@ -1,18 +0,0 @@
{
config,
lib,
...
}:
with lib; let
cfg = config.elements;
in {
options = {
elements = {
hostname = mkOption {type = types.str;};
};
};
config = {
networking.hostName = cfg.hostname;
};
}

View file

@ -1,7 +0,0 @@
{inputs, ...}: {
home-manager = {
# useGlobalPkgs = true;
useUserPackages = true;
backupFileExtension = "hm.bak";
};
}