65 lines
1.6 KiB
Nix
65 lines
1.6 KiB
Nix
|
|
{
|
||
|
|
description = "Stationette nix config";
|
||
|
|
|
||
|
|
inputs = {
|
||
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
|
||
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
|
home-manager.url = "github:nix-community/home-manager/release-23.11";
|
||
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||
|
|
firefox-addons = {
|
||
|
|
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
|
||
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
outputs = {
|
||
|
|
self,
|
||
|
|
nixpkgs,
|
||
|
|
nixpkgs-unstable,
|
||
|
|
home-manager,
|
||
|
|
...
|
||
|
|
} @ inputs: let
|
||
|
|
lib = nixpkgs.lib;
|
||
|
|
# Supported systems for your flake packages, shell, etc.
|
||
|
|
# "aarch64-linux"
|
||
|
|
# "i686-linux"
|
||
|
|
# "x86_64-linux"
|
||
|
|
# "aarch64-darwin"
|
||
|
|
# "x86_64-darwin"
|
||
|
|
system = "x86_64-linux";
|
||
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
||
|
|
pkgs-unstable = nixpkgs-unstable.legacyPackages.${system};
|
||
|
|
in {
|
||
|
|
# NixOS configuration entrypoint
|
||
|
|
# Available through 'nixos-rebuild --flake .#stationette'
|
||
|
|
nixosConfigurations = {
|
||
|
|
stationette = nixpkgs.lib.nixosSystem {
|
||
|
|
modules = [
|
||
|
|
./system/configuration.nix
|
||
|
|
home-manager.nixosModules.home-manager {
|
||
|
|
home-manager.users.chris = import ./home;
|
||
|
|
home-manager.extraSpecialArgs = {
|
||
|
|
inherit pkgs-unstable;
|
||
|
|
inherit inputs;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
# Standalone home-manager configuration entrypoint
|
||
|
|
homeConfigurations = {
|
||
|
|
chris = home-manager.lib.homeManagerConfiguration {
|
||
|
|
inherit pkgs;
|
||
|
|
extraSpecialArgs = {
|
||
|
|
inherit pkgs-unstable;
|
||
|
|
inherit inputs;
|
||
|
|
};
|
||
|
|
modules = [
|
||
|
|
./home
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|