all repos — dotfiles @ 5ed1571890b40560f11305e551f3d94ebb8a094b

my *nix dotfiles

nix/denna: add to flake
Anirudh Oppiliappan x@icyphox.sh
Sun, 07 Jul 2024 09:55:40 +0300
commit

5ed1571890b40560f11305e551f3d94ebb8a094b

parent

45f13e5f3cda8c76b562ddbee685ae74caec32e2

1 files changed, 13 insertions(+), 1 deletions(-)

jump to
M flake.nixflake.nix

@@ -139,6 +139,18 @@ }

]; }; }; - }; + nixosConfigurations = { + denna = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ({ config = { nix.registry.nixpkgs.flake = nixpkgs; }; }) + { + imports = [ ./hosts/denna/configuration.nix ]; + _module.args.self = self; + } + ]; + }; + }; + }; }