Skip to content

Commit

Permalink
flake: update yofi
Browse files Browse the repository at this point in the history
fix typo
  • Loading branch information
RaySlash committed May 2, 2024
1 parent b3d203b commit e737fb0
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 41 deletions.
82 changes: 42 additions & 40 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,52 +22,54 @@

nixos-hardware.url = "github:NixOS/nixos-hardware";
nurpkgs.url = "github:nix-community/NUR";
yofi.url = "github:rayslash/yofi/update-flake";
yofi.url = "github:l4l/yofi";
};

outputs = {
self,
nixpkgs,
...
} @ inputs: let
inherit (self) outputs;
systems = import inputs.systems;
forAllSystems = nixpkgs.lib.genAttrs systems;
in {
packages =
forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
formatter =
forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
overlays = import ./overlays {inherit inputs;};
nixosModules = import ./modules/nixos;
homeManagerModules = import ./modules/home-manager;
outputs =
{ self
, nixpkgs
, ...
} @ inputs:
let
inherit (self) outputs;
systems = import inputs.systems;
forAllSystems = nixpkgs.lib.genAttrs systems;
in
{
packages =
forAllSystems (system: import ./pkgs nixpkgs.legacyPackages.${system});
formatter =
forAllSystems (system: nixpkgs.legacyPackages.${system}.alejandra);
overlays = import ./overlays { inherit inputs; };
nixosModules = import ./modules/nixos;
homeManagerModules = import ./modules/home-manager;

nixosConfigurations = {
frost = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [./nixos ./nixos/frost/configuration.nix];
};
nixosConfigurations = {
frost = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [ ./nixos ./nixos/frost/configuration.nix ];
};

rpi = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [./nixos ./nixos/rpi/configuration.nix];
};
rpi = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [ ./nixos ./nixos/rpi/configuration.nix ];
};

dell = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
modules = [./nixos ./nixos/dell/configuration.nix];
};
dell = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
modules = [ ./nixos ./nixos/dell/configuration.nix ];
};

live = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs outputs;};
system = "x86_64-linux";
modules = [
(nixpkgs
+ "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
./nixos
./nixos/iso/configuration.nix
];
live = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; };
system = "x86_64-linux";
modules = [
(nixpkgs
+ "/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix")
./nixos
./nixos/iso/configuration.nix
];
};
};
};
};
}
1 change: 0 additions & 1 deletion modules/home-manager/hyprland-addons/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ in

config = mkIf cfg.enable {


services = {
cliphist.enable = true;
dunst = {
Expand Down

0 comments on commit e737fb0

Please sign in to comment.