55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
|
{
|
||
|
description = "NixOS system flake.";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
|
||
|
home-manager = {
|
||
|
url = "github:nix-community/home-manager";
|
||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
outputs = inputs@{ self, nixpkgs, home-manager, ... }:
|
||
|
let
|
||
|
system = "x86_64-linux";
|
||
|
userName = "nate";
|
||
|
hostName = "winmax";
|
||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
in
|
||
|
{
|
||
|
nixosConfigurations = {
|
||
|
nixServer = nixpkgs.lib.nixosSystem {
|
||
|
specialArgs = { inherit inputs; };
|
||
|
modules = [
|
||
|
./nixos/configuration.nix
|
||
|
inputs.home-manager.nixosModules.default
|
||
|
];
|
||
|
};
|
||
|
|
||
|
nixSway = nixpkgs.lib.nixosSystem {
|
||
|
# Pass args to sway_configuration
|
||
|
specialArgs = {
|
||
|
inherit userName;
|
||
|
inherit hostName;
|
||
|
};
|
||
|
modules = [
|
||
|
./nixos/sway_configuration.nix
|
||
|
# Setup home manager
|
||
|
home-manager.nixosModules.home-manager {
|
||
|
home-manager.useGlobalPkgs = true;
|
||
|
home-manager.useUserPackages = true;
|
||
|
home-manager.users.${userName} = import ./modules/home-manager/home.nix;
|
||
|
# Pass args to home.nix
|
||
|
home-manager.extraSpecialArgs = {
|
||
|
inherit inputs;
|
||
|
inherit userName;
|
||
|
inherit hostName;
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|