summaryrefslogtreecommitdiff
path: root/examples/nixos/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'examples/nixos/flake.nix')
-rw-r--r--examples/nixos/flake.nix57
1 files changed, 57 insertions, 0 deletions
diff --git a/examples/nixos/flake.nix b/examples/nixos/flake.nix
new file mode 100644
index 0000000..9bab354
--- /dev/null
+++ b/examples/nixos/flake.nix
@@ -0,0 +1,57 @@
+{
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+
+ temp-postgres = {
+ # Try adding "?ref=main&shallow=0" to the URL if you experience caching issues.
+ url = "git+https://git.skreutz.com/temp-postgres.git";
+ # Optionally use your global Nixpkgs input.
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+ };
+
+ outputs =
+ {
+ self,
+ nixpkgs,
+ temp-postgres,
+ }@inputs:
+ {
+ nixosConfigurations.myhost =
+ let
+ system = "x86_64-linux";
+ in
+ nixpkgs.lib.nixosSystem {
+ inherit system;
+ specialArgs = {
+ inherit system inputs;
+ };
+ modules = [
+ # The following goes typically into ./configuration.nix
+ {
+ environment.systemPackages = [
+ inputs.temp-postgres.packages.${system}.default
+
+ # Optionally select the PostgreSQL version provided by Nixpkgs.
+ #inputs.temp-postgres.packages.${system}.temp-postgres_18
+ ];
+
+ users.users.stefan = {
+ isNormalUser = true;
+ extraGroups = [ "wheel" ];
+ initialPassword = "sesame";
+ };
+ services.getty.autologinUser = "stefan";
+ system.stateVersion = "26.05";
+
+ # Dummy values to avoid failed assertions during `nix flake check`.
+ fileSystems."/" = {
+ device = "/dev/null";
+ fsType = "ext4";
+ };
+ boot.loader.grub.devices = [ "/dev/null" ];
+ }
+ ];
+ };
+ };
+}
Generated by cgit. See skreutz.com for my tech blog and contact information.