diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-11-26 16:04:31 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-11-26 16:07:41 -0500 |
| commit | 5beba03bf317cc496c0f590a79930cc6419dc8ad (patch) | |
| tree | b198ba455062a461d40ba35f1a855f2fcce23e82 /flake.nix | |
| parent | update commits (diff) | |
| download | dotfiles-nix-5beba03bf317cc496c0f590a79930cc6419dc8ad.tar.gz dotfiles-nix-5beba03bf317cc496c0f590a79930cc6419dc8ad.tar.bz2 dotfiles-nix-5beba03bf317cc496c0f590a79930cc6419dc8ad.zip | |
update commits
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -3,18 +3,18 @@ inputs = { # nixpkgs - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/2493002b10ccef0880f72d7720538f91fb4f7434"; # home manager home-manager.url = "github:nix-community/home-manager/master"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; # hyprland - hyprland.url = "github:hyprwm/Hyprland/v0.51.1"; + hyprland.url = "github:hyprwm/Hyprland/v0.52.1"; hyprland.inputs.nixpkgs.follows = "nixpkgs"; # hyprland plugins - hyprland-plugins.url = "github:hyprwm/hyprland-plugins/v0.51.0"; + hyprland-plugins.url = "github:hyprwm/hyprland-plugins/v0.52.0"; hyprland-plugins.inputs.hyprland.follows = "hyprland"; # hyprland hy3 - hy3.url = "github:outfoxxed/hy3/hl0.51.0"; + hy3.url = "github:outfoxxed/hy3/hl0.52.0"; hy3.inputs.hyprland.follows = "hyprland"; # sops sops-nix.url = "github:Mic92/sops-nix"; @@ -64,7 +64,7 @@ mkSystem = file: system: nixpkgs.lib.nixosSystem { inherit system; - specialArgs = {inherit inputs;}; + specialArgs = {inherit inputs system;}; modules = [ ./system ./options.nix @@ -76,7 +76,7 @@ in home-manager.lib.homeManagerConfiguration { inherit (hostModule) pkgs; - extraSpecialArgs = {inherit inputs;}; + extraSpecialArgs = {inherit inputs system;}; modules = [ ./home ./options.nix |