Include bootstrap and gimp.

main
Joshua Potter 2023-11-26 16:47:09 -07:00
parent f48fc258ca
commit 6617953da4
3 changed files with 118 additions and 25 deletions

View File

@ -1,5 +1,58 @@
{ {
"nodes": { "nodes": {
"bootstrap": {
"inputs": {
"flake-compat": "flake-compat",
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1701031747,
"narHash": "sha256-4pPmZdvHAmze52z7ftXp2aJYunb5+LPrBRXIOU92RoQ=",
"owner": "jrpotter",
"repo": "bootstrap",
"rev": "ecf4f23589123e2f2ebb5b4c3ca3d1a705791c00",
"type": "github"
},
"original": {
"owner": "jrpotter",
"ref": "v0.1.0",
"repo": "bootstrap",
"type": "github"
}
},
"flake-compat": {
"locked": {
"lastModified": 1696426674,
"narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=",
"rev": "0f9255e01c2351cc7d116c072cb317785dd33b33",
"revCount": 57,
"type": "tarball",
"url": "https://api.flakehub.com/f/pinned/edolstra/flake-compat/1.0.1/018afb31-abd1-7bff-a5e4-cff7e18efb7a/source.tar.gz"
},
"original": {
"type": "tarball",
"url": "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1694529238,
"narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "ff7b65b44d01cf9ba6a71320833626af21126384",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -22,6 +75,22 @@
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": {
"lastModified": 1700390070,
"narHash": "sha256-de9KYi8rSJpqvBfNwscWdalIJXPo8NjdIZcEJum1mH0=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "e4ad989506ec7d71f7302cc3067abd82730a4beb",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1699596684, "lastModified": 1699596684,
"narHash": "sha256-XSXP8zjBZJBVvpNb2WmY0eW8O2ce+sVyj1T0/iBRIvg=", "narHash": "sha256-XSXP8zjBZJBVvpNb2WmY0eW8O2ce+sVyj1T0/iBRIvg=",
@ -39,8 +108,24 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"bootstrap": "bootstrap",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs_2"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
} }
} }
}, },

View File

@ -2,35 +2,41 @@
description = "NixOS Flake"; description = "NixOS Flake";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; bootstrap.url = "github:jrpotter/bootstrap/v0.1.0";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-23.05"; url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
}; };
outputs = { self, nixpkgs, home-manager, ... }: { outputs = { self, nixpkgs, home-manager, bootstrap, ... }:
# Used with `nixos-rebuild --flake .#<hostname>` let
# nixosConfigurations."<hostname>".config.system.build.toplevel must be a derivation
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
in
# Used to pass non-default parameters to submodules. {
# specialArgs = {...}; # Used with `nixos-rebuild --flake .#<hostname>`
# nixosConfigurations."<hostname>".config.system.build.toplevel must be a derivation
# Modules can be attribute sets or a function that returns an attribute set. nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
# https://nixos-and-flakes.thiscute.world/nixos-with-flakes/nixos-with-flakes-enabled inherit system;
modules = [ # Modules can be attribute sets or a function that returns an attribute set.
./configuration.nix # https://nixos-and-flakes.thiscute.world/nixos-with-flakes/nixos-with-flakes-enabled
home-manager.nixosModules.home-manager modules = [
{ ./configuration.nix
home-manager = { home-manager.nixosModules.home-manager
useGlobalPkgs = true; {
useUserPackages = true; home-manager = {
users.jrpotter = import ./jrpotter; useGlobalPkgs = true;
}; useUserPackages = true;
} users.jrpotter = import ./jrpotter;
]; # Used to pass non-default parameters to submodules.
extraSpecialArgs = {
inherit system;
bootstrap = bootstrap.packages.${system}.default;
};
};
}
];
};
}; };
};
} }

View File

@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, bootstrap, ... }:
{ {
imports = [ imports = [
./git.nix ./git.nix
@ -21,7 +21,9 @@
packages = with pkgs; [ packages = with pkgs; [
anki-bin anki-bin
bitwarden bitwarden
bootstrap
firefox firefox
gimp
mullvad-vpn mullvad-vpn
unzip unzip
wezterm wezterm