Remove unused
This commit is contained in:
parent
0d17a0baf1
commit
a7494307a1
3 changed files with 0 additions and 46 deletions
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
{inputs, ...}: {
|
||||
home-manager = {
|
||||
# useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
backupFileExtension = "hm.bak";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue