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": [
"nixpkgs" "nixpkgs"
], ],
"treefmt-nix": "treefmt-nix" "treefmt-nix": [
"treefmt-nix"
]
}, },
"locked": { "locked": {
"lastModified": 1739724221, "lastModified": 1739724221,
@@ -168,6 +170,27 @@
"type": "github" "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": { "root": {
"inputs": { "inputs": {
"ags": "ags", "ags": "ags",
@@ -177,10 +200,11 @@
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nur": "nur", "nur": "nur",
"quadlet-nix": "quadlet-nix",
"sops-nix": "sops-nix", "sops-nix": "sops-nix",
"spicetify-nix": "spicetify-nix", "spicetify-nix": "spicetify-nix",
"systems": "systems", "systems": "systems",
"treefmt-nix": "treefmt-nix_2" "treefmt-nix": "treefmt-nix"
} }
}, },
"sops-nix": { "sops-nix": {
@@ -245,27 +269,6 @@
} }
}, },
"treefmt-nix": { "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": { "inputs": {
"nixpkgs": [ "nixpkgs": [
"nixpkgs" "nixpkgs"

View File

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

View File

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

View File

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