auto-install script
This commit is contained in:
parent
9f46b89e4c
commit
9419b77ed4
54
flake.nix
54
flake.nix
|
@ -2,39 +2,41 @@
|
||||||
description = "shynd's nixos-config";
|
description = "shynd's nixos-config";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# nixpkgs.url = "nixpkgs/nixos-24.11";
|
#nixpkgs.url = "nixpkgs/nixos-24.11";
|
||||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||||
# hyprland.url = "github:hyprwm/Hyprland"; # hyprland development
|
#hyprland.url = "github:hyprwm/Hyprland"; # hyprland development
|
||||||
# distro-grub-themes.url = "github:AdisonCavani/distro-grub-themes";
|
#distro-grub-themes.url = "github:AdisonCavani/distro-grub-themes";
|
||||||
# ags.url = "github:aylur/ags/v1"; # aylurs-gtk-shell-v1
|
#ags.url = "github:aylur/ags/v1"; # aylurs-gtk-shell-v1
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs@{ self, nixpkgs, ... }:
|
outputs =
|
||||||
let
|
inputs@{ self, nixpkgs, ... }:
|
||||||
|
let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
host = "nixos-config";
|
host = "nixos-config";
|
||||||
username = "shynd";
|
username = "shynd";
|
||||||
|
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config = {
|
config = {
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
"${host}" = nixpkgs.lib.nixosSystem rec {
|
"${host}" = nixpkgs.lib.nixosSystem rec {
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
inherit system;
|
inherit system;
|
||||||
inherit inputs;
|
inherit inputs;
|
||||||
inherit system;
|
inherit username;
|
||||||
};
|
inherit host;
|
||||||
modules = [
|
};
|
||||||
./hosts/${host}/config.nix
|
modules = [
|
||||||
# inputs.distro-grub-themes.nixosModules.${system}.default
|
./hosts/${host}/config.nix
|
||||||
];
|
# inputs.distro-grub-themes.nixosModules.${system}.default
|
||||||
};
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
Loading…
Reference in New Issue