cleaning atticd flake module

This commit is contained in:
2024-11-12 15:03:52 -06:00
parent cc2e79725f
commit 8c30f64db7
2 changed files with 22 additions and 161 deletions

View File

@@ -7,7 +7,6 @@
nix-gaming.url = "github:fufexan/nix-gaming";
hyprland.url = "github:hyprwm/Hyprland";
zen-browser.url = "github:MarceColl/zen-browser-flake";
atticd.url = "github:zhaofengli/attic";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
@@ -25,13 +24,11 @@
outputs =
{
self,
nixpkgs,
home-manager,
...
}@inputs:
let
inherit (self) outputs;
lib = nixpkgs.lib // home-manager.lib;
lib = inputs.nixpkgs.lib // inputs.home-manager.lib;
system = "x86_64-linux";
makePkgs =
repo:
@@ -39,7 +36,7 @@
inherit system;
config.allowUnfree = true;
};
pkgs = makePkgs nixpkgs;
pkgs = makePkgs inputs.nixpkgs;
pkgsC = makePkgs inputs.nixpkgsC;
overlays = [ (import ./overlay.nix { inherit pkgs pkgsC; }) ];
createConfig = name: {
@@ -52,7 +49,6 @@
./hosts/${name}/configuration.nix
inputs.sops-nix.nixosModules.sops
inputs.nixos-cosmic.nixosModules.default
inputs.attic.nixosModules.default
];
};
in