48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{
|
|
description = "FrostPhoenix's nixos configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
nur.url = "github:nix-community/NUR";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nix-gaming.url = "github:fufexan/nix-gaming";
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak";
|
|
|
|
nix-index-database = {
|
|
url = "github:nix-community/nix-index-database";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
maple-mono = {
|
|
url = "github:subframe7536/maple-font/variable";
|
|
flake = false;
|
|
};
|
|
|
|
superfile.url = "github:yorukot/superfile";
|
|
vicinae.url = "github:vicinaehq/vicinae";
|
|
zen-browser.url = "github:0xc000022070/zen-browser-flake/beta";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, ... }: {
|
|
nixosConfigurations = {
|
|
yourhostname = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./configuration.nix
|
|
home-manager.nixosModules.home-manager
|
|
{
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.yourusername = import ./home.nix;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}`
|