mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
28 lines
690 B
Nix
28 lines
690 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager.url = "github:nix-community/home-manager";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
# stylix.url = "github:danth/stylix/release-23.11";
|
|
stylix.url = "github:danth/stylix";
|
|
};
|
|
|
|
outputs = inputs@{ nixpkgs, home-manager, stylix, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
|
|
pkgs = import inputs.nixpkgs {
|
|
inherit system;
|
|
};
|
|
|
|
utils = import ./utils.nix { inherit inputs system; };
|
|
in {
|
|
nixosConfigurations = {
|
|
muon = utils.mkHost ./hosts/muon/configuration.nix;
|
|
};
|
|
|
|
homeManagerModules.default = ./modules/home;
|
|
};
|
|
}
|