Squashed commit of the following:
commit b56a956345dbe9cc152097b540436a74fee3a844
Author: langedev <public@daltonlange.com>
Date: Wed Feb 21 14:31:11 2024 -0800
Fix typo
commit 38aadf56730fb7d7a9ddbf704d024061c43983b3
Author: langedev <public@daltonlange.com>
Date: Wed Feb 21 14:24:49 2024 -0800
testing refactoring
This commit is contained in:
parent
a79d9a678d
commit
5f2b93e522
8 changed files with 89 additions and 40 deletions
28
flake.nix
28
flake.nix
|
|
@ -1,16 +1,36 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:langedev/nixpkgs/nixos-unstable";
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
personalpkgs.url = "github:langedev/nixpkgs/nixos-unstable";
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, hyprland, ... }: {
|
||||
outputs = { self, nixpkgs, personalpkgs, hyprland, ... }:
|
||||
# let
|
||||
# personal-overlay = final: prev: {
|
||||
# personal = personalpkgs.legacyPackages.${prev.system};
|
||||
# };
|
||||
# in {
|
||||
{
|
||||
nixosConfigurations.onizuka = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
modules = [
|
||||
# ({ config, pkgs, ... }: { nixpkgs.overlays = [ personal-overlay ]; })
|
||||
hyprland.nixosModules.default
|
||||
{ programs.hyprland.enable = true; }
|
||||
./systems/shared
|
||||
./systems/onizuka
|
||||
];
|
||||
};
|
||||
|
||||
nixosConfigurations.jibril = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
# ({ config, pkgs, ... }: { nixpkgs.overlays = [ personal-overlay ]; })
|
||||
hyprland.nixosModules.default
|
||||
{ programs.hyprland.enable = true; }
|
||||
./systems/shared
|
||||
./systems/jibril
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue