mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-25 13:47:01 -04:00
hope
This commit is contained in:
parent
de4282f257
commit
69777aa4dc
14 changed files with 259 additions and 26 deletions
24
flake.nix
24
flake.nix
|
@ -86,6 +86,30 @@
|
|||
};
|
||||
nixosConfigurations = {
|
||||
nixd = nixpkgs.lib.nixosSystem { };
|
||||
serverpc = nixpkgs.lib.nixosSystem rec {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
unstable = import nixpkgs-unstable {
|
||||
inherit system;
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
(
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
_module.args = {
|
||||
stable = pkgs;
|
||||
};
|
||||
}
|
||||
)
|
||||
./boxes/serverpc/configuration.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
];
|
||||
};
|
||||
desktopIso = nixpkgs.lib.nixosSystem {
|
||||
system = "aarch64-linux";
|
||||
modules = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue