🗑️ flake cleanup

This commit is contained in:
James Walker 2023-06-23 18:16:24 -04:00
parent effe379b80
commit 5a80cf0597
Signed by: walkah
GPG Key ID: 3C127179D6086E93
4 changed files with 37 additions and 1309 deletions

1
.gitignore vendored
View File

@ -1,5 +1,4 @@
/.direnv /.direnv
/result /result
/.pre-commit-config.yaml /.pre-commit-config.yaml
/.devenv/
/node_modules/ /node_modules/

1329
flake.lock

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,11 @@
nixos-hardware.url = "github:NixOS/nixos-hardware/master"; nixos-hardware.url = "github:NixOS/nixos-hardware/master";
home-manager.url = "github:nix-community/home-manager"; home-manager.url = "github:nix-community/home-manager";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
deploy-rs.url = "github:serokell/deploy-rs";
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
};
darwin = { darwin = {
url = "github:lnl7/nix-darwin/master"; url = "github:lnl7/nix-darwin/master";
@ -28,7 +32,6 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
devenv.url = "github:cachix/devenv/latest";
# My stuff # My stuff
dotfiles = { dotfiles = {
@ -42,8 +45,6 @@
url = "github:walkah/workon"; url = "github:walkah/workon";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
fission.url = "github:fission-codes/nix-overlay";
}; };
outputs = outputs =
@ -54,19 +55,15 @@
, flake-utils , flake-utils
, nixos-generators , nixos-generators
, home-manager , home-manager
, devenv
, dotfiles , dotfiles
, workon , workon
, fission
, ... , ...
}@inputs: }@inputs:
let let
overlays = [ overlays = [
(self: _super: { (self: _super: {
workon = workon.packages.${self.system}.default; workon = workon.packages.${self.system}.default;
devenv = devenv.packages.${self.system}.devenv;
}) })
fission.overlay
]; ];
mkSystem = hostName: system: modules: mkSystem = hostName: system: modules:

View File

@ -23,7 +23,6 @@
# Nix # Nix
cachix cachix
devenv
niv niv
nixfmt nixfmt
nixpkgs-fmt nixpkgs-fmt
@ -39,7 +38,5 @@
# My stuff # My stuff
workon workon
fission-cli
carmirror
]; ];
} }