Add anime-launcher, remove commented code in flake
Add anime-launcher because it needs to be installed at the system level to interact with /etc/hosts configuration. Remove commented code as it wasn't being used to overlay packages, and can be easily researched later
This commit is contained in:
parent
82979ed765
commit
a5c524ed33
4 changed files with 138 additions and 30 deletions
14
flake.nix
14
flake.nix
|
|
@ -1,21 +1,18 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
# personalpkgs.url = "github:langedev/nixpkgs/nixos-unstable";
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
aagl = {
|
||||
url = "github:ezKEa/aagl-gtk-on-nix";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, hyprland, ... }:
|
||||
# let
|
||||
# personal-overlay = final: prev: {
|
||||
# personal = personalpkgs.legacyPackages.${prev.system};
|
||||
# };
|
||||
# in {
|
||||
outputs = { self, nixpkgs, hyprland, aagl, ... }@inputs:
|
||||
{
|
||||
nixosConfigurations.onizuka = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
# ({ config, pkgs, ... }: { nixpkgs.overlays = [ personal-overlay ]; })
|
||||
hyprland.nixosModules.default
|
||||
{ programs.hyprland.enable = true; }
|
||||
./systems/shared
|
||||
|
|
@ -26,7 +23,6 @@
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue