Add quadlet-nix

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-02-16 19:56:54 +00:00
parent 0799ab4db7
commit eeb39db533
4 changed files with 51 additions and 26 deletions

49
flake.lock generated
View File

@@ -151,7 +151,9 @@
"nixpkgs": [
"nixpkgs"
],
"treefmt-nix": "treefmt-nix"
"treefmt-nix": [
"treefmt-nix"
]
},
"locked": {
"lastModified": 1739724221,
@@ -168,6 +170,27 @@
"type": "github"
}
},
"quadlet-nix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1739316033,
"narHash": "sha256-yHBsu5I2GOTaMzqEYXfDWzEH+pTpNKp/Ew/8x+cVCZg=",
"owner": "SEIAROTg",
"repo": "quadlet-nix",
"rev": "31e4175bdc1cee453f66cada21f9dd6eb90e507f",
"type": "github"
},
"original": {
"owner": "SEIAROTg",
"ref": "main",
"repo": "quadlet-nix",
"type": "github"
}
},
"root": {
"inputs": {
"ags": "ags",
@@ -177,10 +200,11 @@
"home-manager": "home-manager",
"nixpkgs": "nixpkgs",
"nur": "nur",
"quadlet-nix": "quadlet-nix",
"sops-nix": "sops-nix",
"spicetify-nix": "spicetify-nix",
"systems": "systems",
"treefmt-nix": "treefmt-nix_2"
"treefmt-nix": "treefmt-nix"
}
},
"sops-nix": {
@@ -245,27 +269,6 @@
}
},
"treefmt-nix": {
"inputs": {
"nixpkgs": [
"nur",
"nixpkgs"
]
},
"locked": {
"lastModified": 1733222881,
"narHash": "sha256-JIPcz1PrpXUCbaccEnrcUS8jjEb/1vJbZz5KkobyFdM=",
"owner": "numtide",
"repo": "treefmt-nix",
"rev": "49717b5af6f80172275d47a418c9719a31a78b53",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "treefmt-nix",
"type": "github"
}
},
"treefmt-nix_2": {
"inputs": {
"nixpkgs": [
"nixpkgs"

View File

@@ -62,7 +62,10 @@
repo = "NUR";
ref = "master";
inputs.nixpkgs.follows = "nixpkgs";
inputs = {
nixpkgs.follows = "nixpkgs";
treefmt-nix.follows = "treefmt-nix";
};
};
flake-utils = {
@@ -83,6 +86,15 @@
inputs.nixpkgs.follows = "nixpkgs";
};
quadlet-nix = {
type = "github";
owner = "SEIAROTg";
repo = "quadlet-nix";
ref = "main";
inputs.nixpkgs.follows = "nixpkgs";
};
astal = {
type = "github";
owner = "aylur";

View File

@@ -1,5 +1,7 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
imports = [ inputs.quadlet-nix.nixosModules.quadlet ];
virtualisation = {
containers.enable = true;
oci-containers.backend = "podman";

View File

@@ -2,14 +2,22 @@
user ? throw "user argument is required",
home ? throw "home argument is required",
}:
{ lib, pkgs, ... }:
{
lib,
pkgs,
inputs,
...
}:
{
home-manager.users.${user} = {
imports = [ inputs.quadlet-nix.homeManagerModules.quadlet ];
services.podman.enable = true;
home = {
packages = with pkgs; [
podman-compose
kompose
dive
];