Update 3 files
- /flake.nix - /configuration.nix - /modules/hm/default.nix
This commit is contained in:
@@ -131,11 +131,6 @@ in
|
|||||||
XMODIFIERS = "@im=kime";
|
XMODIFIERS = "@im=kime";
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.hyprland.plugins = [
|
|
||||||
pkgs.hyprlandPlugins.hyprexpo
|
|
||||||
pkgs.hyprlandPlugins.hyprscrolling
|
|
||||||
];
|
|
||||||
|
|
||||||
# System Version - Don't change unless you know what you're doing (helps with system upgrades and compatibility)
|
# System Version - Don't change unless you know what you're doing (helps with system upgrades and compatibility)
|
||||||
system.stateVersion = "25.05";
|
system.stateVersion = "25.05";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,13 @@
|
|||||||
# inputs.nixpkgs.follows = "nixpkgs";
|
# inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hyprland.url = "github:hyprwm/Hyprland";
|
||||||
|
|
||||||
|
hyprland-plugins = {
|
||||||
|
url = "github:hyprwm/hyprland-plugins";
|
||||||
|
inputs.hyprland.follows = "hyprland";
|
||||||
|
};
|
||||||
|
|
||||||
# Hardware Configuration's, used in ./configuration.nix. Feel free to remove if unused
|
# Hardware Configuration's, used in ./configuration.nix. Feel free to remove if unused
|
||||||
nixos-hardware.url = "github:nixos/nixos-hardware/master";
|
nixos-hardware.url = "github:nixos/nixos-hardware/master";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
let
|
let
|
||||||
idea20243 = pkgs.jetbrains.idea-ultimate.overrideAttrs (oldAttrs: {
|
idea20243 = pkgs.jetbrains.idea-ultimate.overrideAttrs (oldAttrs: {
|
||||||
version = "2024.3.7";
|
version = "2024.3.7";
|
||||||
@@ -20,6 +20,14 @@ in
|
|||||||
# pkgs.userPkgs.vscode - your personal nixpkgs version
|
# pkgs.userPkgs.vscode - your personal nixpkgs version
|
||||||
];
|
];
|
||||||
|
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
plugins = [
|
||||||
|
inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.<plugin>
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
# hydenix home-manager options go here
|
# hydenix home-manager options go here
|
||||||
hydenix = {
|
hydenix = {
|
||||||
|
|||||||
Reference in New Issue
Block a user