dotfiles/flake.nix

84 lines
1.9 KiB
Nix
Raw Normal View History

2022-09-26 20:28:35 +00:00
{
2023-07-30 22:01:46 +00:00
inputs = {
home-manager.inputs.nixpkgs.follows = "nixpkgs";
home-manager.url = "github:nix-community/home-manager/master";
2024-09-21 08:58:08 +00:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-2405.url = "github:nixos/nixpkgs/nixos-24.05";
2023-07-30 22:01:46 +00:00
};
2022-09-26 20:28:35 +00:00
outputs =
2024-09-21 08:58:08 +00:00
{
nixos-hardware,
nixpkgs,
self,
...
}@inputs:
2024-03-18 20:33:28 +00:00
let
inherit (self) outputs;
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
2024-03-18 20:33:28 +00:00
username = "opdavies";
mkNixos = import ./nix/lib/nixos {
2024-06-15 11:52:54 +00:00
inherit
inputs
outputs
2024-09-21 08:58:08 +00:00
nixos-hardware
2024-06-15 11:52:54 +00:00
pkgs
self
username
;
};
mkWsl = import ./nix/lib/wsl2 {
inherit
inputs
outputs
self
username
;
};
2024-02-24 10:21:53 +00:00
2024-05-06 13:36:44 +00:00
inherit (pkgs) mkShell;
inherit (pkgs.vimUtils) buildVimPlugin;
in
{
packages.${system} = {
default = mkShell { buildInputs = with pkgs; [ bashInteractive ]; };
opdavies-nvim = buildVimPlugin {
name = "opdavies-nvim";
src = ./nvim;
};
};
2024-03-18 20:33:28 +00:00
formatter.${system} = pkgs.nixfmt-rfc-style;
overlays = import ./nix/overlays { inherit inputs; };
nixosConfigurations = {
lemp11 = mkNixos {
desktop = true;
hostname = "lemp11";
2024-11-22 01:18:31 +00:00
# TODO: move the rest of the modules here.
modules = [
nixos-hardware.nixosModules.common-cpu-intel
nixos-hardware.nixosModules.common-gpu-intel
nixos-hardware.nixosModules.common-pc-laptop
nixos-hardware.nixosModules.common-pc-laptop-hdd
nixos-hardware.nixosModules.system76
];
};
2022-09-27 06:37:57 +00:00
};
homeConfigurations = {
wsl2 = mkWsl { system = "x86_64-linux"; };
};
2022-09-26 20:28:35 +00:00
};
}