init commit
This commit is contained in:
commit
8f7a75814d
21 changed files with 1073 additions and 0 deletions
16
modules/flake/toplevel.nix
Normal file
16
modules/flake/toplevel.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# Top-level flake glue to get our configuration working
|
||||
{ inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
inputs.nixos-unified.flakeModules.default
|
||||
inputs.nixos-unified.flakeModules.autoWire
|
||||
];
|
||||
perSystem = { self', pkgs, ... }: {
|
||||
# For 'nix fmt'
|
||||
formatter = pkgs.nixpkgs-fmt;
|
||||
|
||||
# Enables 'nix run' to activate.
|
||||
packages.default = self'.packages.activate;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue