nicks-nix-config/flake.nix

162 lines
4.3 KiB
Nix
Raw Normal View History

2022-10-08 15:40:33 -07:00
{
2022-11-08 19:08:54 -08:00
description = "Nick's NixOS Configuration";
2022-10-08 15:40:33 -07:00
inputs = {
2023-12-02 18:17:10 -08:00
utils.url = "github:numtide/flake-utils";
2023-07-29 12:48:45 -07:00
nixvim.url = "github:nix-community/nixvim";
2022-10-08 15:40:33 -07:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:NixOS/nixpkgs/release-23.05";
2023-07-29 12:48:45 -07:00
kmonad.url = "github:kmonad/kmonad?dir=nix";
2023-11-08 21:00:11 -08:00
2023-12-02 18:17:10 -08:00
headscale = {
url = "github:kradalby/headscale/bbb4c357268998fd02780b7f8f2013f76e3ab80a";
# url = "github:juanfont/headscale"; # Real repo
inputs."flake-utils".follows = "utils";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-08-25 20:26:33 -07:00
nicks_nextcloud_integrations.url = "git+https://git.nickiel.net/Nickiel/nicks_nextcloud_integrations.git";
2023-11-08 21:00:11 -08:00
ewwtilities.url = "git+https://git.nickiel.net/Nickiel/Ewwtilities.git";
2023-08-25 20:26:33 -07:00
2022-10-08 15:40:33 -07:00
home-manager = {
url = github:nix-community/home-manager;
inputs.nixpkgs.follows = "nixpkgs";
};
2022-10-08 15:40:33 -07:00
};
2023-12-02 18:17:10 -08:00
outputs = inputs@{
self,
nixpkgs,
nixpkgs-stable,
headscale,
home-manager,
ewwtilities,
kmonad,
...
}:
2022-10-08 15:40:33 -07:00
let
user = "nixolas";
system = "x86_64-linux";
pkgs = import nixpkgs {
2023-12-02 18:17:10 -08:00
inherit system;
overlays = [
headscale.overlay
];
config.allowUnfree = true;
};
pkgs-stable = import nixpkgs-stable {
inherit system;
config.allowUnfree = true;
};
lib = nixpkgs.lib;
2022-10-08 15:40:33 -07:00
in {
nixosConfigurations = {
2023-12-02 18:17:10 -08:00
inherit lib;
2023-03-31 17:38:15 -07:00
# Home server
2023-03-31 18:55:21 -07:00
Alaska = lib.nixosSystem {
2023-03-31 17:38:15 -07:00
inherit system;
specialArgs = {
2023-12-02 18:17:10 -08:00
inherit user pkgs pkgs-stable;
};
2023-03-31 17:38:15 -07:00
modules = [
2023-08-25 20:26:33 -07:00
inputs.nicks_nextcloud_integrations.nixosModules.default
2023-03-31 17:38:15 -07:00
{
networking.hostName = "Alaska";
}
./hosts/Alaska
./hosts/Alaska/configuration.nix
home-manager.nixosModules.home-manager {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
2023-12-02 18:17:10 -08:00
inherit user ewwtilities pkgs-stable;
};
2023-08-05 08:52:27 -07:00
users.${user} = {
imports = [
(import ./home.nix)
2023-08-05 08:52:27 -07:00
# Add nixvim to the homemanager
inputs.nixvim.homeManagerModules.nixvim
];
};
2023-03-31 17:38:15 -07:00
};
}
];
};
NicksNixLaptop = lib.nixosSystem {
inherit system;
specialArgs = {
2023-12-02 18:17:10 -08:00
inherit user pkgs;
};
modules = [
{
networking.hostName = "NicksNixLaptop";
}
kmonad.nixosModules.default
./hosts/laptop
./hosts/configuration.nix
./modules/kmonad.nix
home-manager.nixosModules.home-manager {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
2023-12-02 18:17:10 -08:00
inherit user ewwtilities pkgs-stable;
};
2023-08-05 08:52:27 -07:00
users.${user} = {
imports = [
(import ./home.nix)
2023-08-05 08:52:27 -07:00
# Add nixvim to the homemanager
inputs.nixvim.homeManagerModules.nixvim
];
};
};
}
];
};
2023-02-25 17:19:34 -08:00
NicksNixDesktop = lib.nixosSystem {
inherit system;
specialArgs = { inherit user; };
modules = [
{
networking.hostName = "NicksNixDesktop";
}
kmonad.nixosModules.default
./hosts/desktop
./hosts/configuration.nix
./modules/kmonad.nix
2023-03-17 15:18:18 -07:00
./modules/steam.nix
2023-02-25 17:19:34 -08:00
home-manager.nixosModules.home-manager {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {
2023-12-02 18:17:10 -08:00
inherit user ewwtilities pkgs-stable;
};
2023-07-29 12:48:45 -07:00
users.${user} = {
imports = [
(import ./home.nix)
2023-07-29 16:01:53 -07:00
# Add nixvim to the homemanager
2023-07-29 12:48:45 -07:00
inputs.nixvim.homeManagerModules.nixvim
];
};
2023-02-25 17:19:34 -08:00
};
}
];
};
2022-10-08 15:40:33 -07:00
};
};
}