cerulean
This commit is contained in:
parent
ac95603fc4
commit
61b531aa11
42 changed files with 1061 additions and 445 deletions
64
flake.nix
64
flake.nix
|
|
@ -2,56 +2,32 @@
|
|||
description = "release the dea files";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
systems.url = "github:nix-systems/default-linux";
|
||||
|
||||
nixpkgs.url = "github:NixOS/nixpkgs";
|
||||
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
home-manager-unstable.url = "github:nix-community/home-manager";
|
||||
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
|
||||
cerulean.url = "github:cry128/cerulean";
|
||||
cerulean.inputs.systems.follows = "systems";
|
||||
cerulean.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
|
||||
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
|
||||
nixcats.url = "github:BirdeeHub/nixCats-nvim";
|
||||
|
||||
plasma-manager = {
|
||||
url = "github:nix-community/plasma-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.home-manager.follows = "home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
inputs.home-manager.follows = "home-manager-unstable";
|
||||
};
|
||||
|
||||
millennium = {
|
||||
url = "github:SteamClientHomebrew/millennium?dir=packages/nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
};
|
||||
|
||||
nixConfig = {
|
||||
extra-experimental-features = "pipe-operators";
|
||||
};
|
||||
|
||||
outputs =
|
||||
inputs@{ self, nixpkgs, nixcats, ... }:
|
||||
let
|
||||
lib = nixpkgs.lib;
|
||||
|
||||
commonModules = [
|
||||
./configuration.nix
|
||||
./user.nix
|
||||
inputs.nix-flatpak.nixosModules.nix-flatpak
|
||||
];
|
||||
in
|
||||
{
|
||||
# laptop
|
||||
nixosConfigurations.nahemah = lib.nixosSystem {
|
||||
specialArgs = {
|
||||
host = "nahemah";
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
./hosts/nahemah/hardware-configuration.nix
|
||||
]
|
||||
++ commonModules;
|
||||
};
|
||||
|
||||
# pc
|
||||
nixosConfigurations.sandalphon = lib.nixosSystem {
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
./hosts/sandalphon/hardware-configuration.nix
|
||||
./hosts/sandalphon/configuration.nix
|
||||
./hosts/sandalphon/games.nix
|
||||
]
|
||||
++ commonModules;
|
||||
};
|
||||
};
|
||||
outputs = {cerulean, ...} @ inputs:
|
||||
cerulean.snow.flake inputs ./.;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue