diff --git a/flake.lock b/flake.lock index 4ea74ca..2b11bf3 100644 --- a/flake.lock +++ b/flake.lock @@ -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", diff --git a/flake.nix b/flake.nix index 41d1ced..f936769 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; diff --git a/hosts/algiz/default.nix b/hosts/algiz/default.nix index 8ac0456..acf9ee6 100644 --- a/hosts/algiz/default.nix +++ b/hosts/algiz/default.nix @@ -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/" diff --git a/hosts/algiz/services.nix b/hosts/algiz/services.nix index a9d2d00..8944a66 100644 --- a/hosts/algiz/services.nix +++ b/hosts/algiz/services.nix @@ -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 ];