drop comin

This commit is contained in:
Daylin Morgan 2025-01-08 15:48:08 -06:00
parent dae27425fa
commit 5a952378b5
Signed by: daylin
GPG key ID: 950D13E9719334AD
4 changed files with 0 additions and 41 deletions

View file

@ -54,26 +54,6 @@
"type": "github"
}
},
"comin": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1731534082,
"narHash": "sha256-n8yVzBixxaj0Qn6SV655t6QUtKSOJ+sR4AEoq0Vqb/0=",
"owner": "nlewo",
"repo": "comin",
"rev": "9afca855518f79b5bff3d2a9663b2e6f81dd361a",
"type": "github"
},
"original": {
"owner": "nlewo",
"repo": "comin",
"type": "github"
}
},
"f1multiviewer": {
"inputs": {
"nixpkgs": [
@ -977,7 +957,6 @@
"root": {
"inputs": {
"NixVirt": "NixVirt",
"comin": "comin",
"f1multiviewer": "f1multiviewer",
"ghostty": "ghostty",
"hyprland": "hyprland",

View file

@ -46,11 +46,6 @@
};
};
comin = {
url = "github:nlewo/comin";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "git+https://github.com/hyprwm/Hyprland/?submodules=1";
hyprland.inputs.nixpkgs.follows = "nixpkgs";
hyprland-contrib.url = "github:hyprwm/contrib";

View file

@ -1,14 +1,10 @@
{
inputs,
config,
enabled,
pkgs,
...
}:
{
imports = [
inputs.comin.nixosModules.comin
];
oizys = {
rune.motd = enabled;
@ -25,7 +21,6 @@
user = "root";
rcloneConfigFile = "/home/daylin/.config/rclone/rclone.conf";
repository = "rclone:g:archives/algiz";
# passwordFile = "/home/daylin/.config/restic/algiz-pass";
passwordFile = config.sops.secrets.restic-algiz.path;
paths = [
"/home/daylin/services/git/"

View file

@ -19,16 +19,6 @@ in
settings.PasswordAuthentication = false;
};
services.comin = enabled // {
remotes = [
{
name = "origin";
url = "https://github.com/daylinmorgan/oizys.git";
branches.main.name = "main";
}
];
};
security.polkit = enabled; # attic was looking for this...
environment.systemPackages = [ pkgs.attic-client ];