remove attic import
All checks were successful
Check Nix flake / Perform Nix flake checks (ubuntu-latest) (pull_request) Successful in 5m36s
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 6s
Check Nix formatting / Perform Nix format checks (pull_request) Successful in 2m26s

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2025-01-25 23:34:56 -05:00
parent eaf77103f2
commit 18e7779880
No known key found for this signature in database
GPG Key ID: 47940175096C1330
3 changed files with 11 additions and 10 deletions

View File

@ -29,15 +29,15 @@
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.05";
systems.url = "github:nix-systems/default"; systems.url = "github:nix-systems/default";
attic = { # attic = {
url = "github:zhaofengli/attic"; # url = "github:zhaofengli/attic";
inputs = { # inputs = {
nixpkgs.follows = "nixpkgs"; # nixpkgs.follows = "nixpkgs";
nixpkgs-stable.follows = "nixpkgs-stable"; # nixpkgs-stable.follows = "nixpkgs-stable";
flake-compat.follows = "flake-compat"; # flake-compat.follows = "flake-compat";
flake-parts.follows = "flake-parts"; # flake-parts.follows = "flake-parts";
}; # };
}; # };
firefox-addons = { firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons"; url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";

View File

@ -3,6 +3,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
act act
alacritty alacritty
attic-client
amdgpu_top amdgpu_top
bat bat
bitwarden-cli bitwarden-cli

View File

@ -2,6 +2,6 @@
{ {
users = [ "alice" ]; users = [ "alice" ];
modules = [ modules = [
inputs.attic.nixosModules.atticd # inputs.attic.nixosModules.atticd
]; ];
} }