1
1

Move flake to top level

This commit is contained in:
2023-09-22 17:05:22 -04:00
parent afbd2a3794
commit 3246d39617
4 changed files with 29 additions and 29 deletions

View File

@@ -9,14 +9,6 @@
[
# Include the results of the hardware scan.
./hardware-configuration.nix
# Applications that run on this server
../nixos-apps/crueltysquad.com.nix
../nixos-apps/cutesealfanpage.love.nix
../nixos-apps/ewanick.com.nix
../nixos-apps/fancytypist.com.nix
../nixos-apps/git.ewanick.com.nix
../nixos-apps/jitsi.crueltysquad.com.nix
];
# Use the GRUB 2 boot loader.

View File

@@ -1,27 +0,0 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1687729501,
"narHash": "sha256-mTLkMePoHUWvTCf3NuKbeYEea/tsikSIKBWwb9OfRr4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "35130d4b4f0b8c50ed2aceb909a538c66c91d4a0",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-23.05",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

View File

@@ -1,18 +0,0 @@
{
description = "System flake for Linode NixOS server";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
};
outputs = inputs@{ nixpkgs, ... }:
{
nixosConfigurations.linode-nixos =
nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
];
};
};
}