cleanup, and move automapaper to flake
This commit is contained in:
parent
d71f3aa179
commit
6acc907490
9 changed files with 35 additions and 196 deletions
13
flake.nix
13
flake.nix
|
|
@ -20,20 +20,25 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
automapaper = {
|
||||
url = "github:itepastra/automapaper";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, nix-colors, ... }@inputs:
|
||||
outputs = { self, nixpkgs, nix-colors, automapaper, ... }@inputs:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
|
||||
nixosConfigurations = {
|
||||
default = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit nix-colors;
|
||||
inherit automapaper;
|
||||
};
|
||||
modules = [
|
||||
./hosts/default/configuration.nix
|
||||
|
|
@ -41,7 +46,7 @@
|
|||
];
|
||||
};
|
||||
vnc = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
inherit nix-colors;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue