intellij add

This commit is contained in:
2025-11-01 14:50:36 +09:00
parent 48f206e9c3
commit 99a20c5f4d
2 changed files with 20 additions and 3 deletions

View File

@@ -55,6 +55,13 @@ in
# }; # };
# }; # };
programs.hyprland.xwayland.enable = true;
services.displayManager.autoLogin = {
enable = true;
user = "bangae1";
};
# Home Manager Configuration - manages user-specific configurations (dotfiles, themes, etc.) # Home Manager Configuration - manages user-specific configurations (dotfiles, themes, etc.)
home-manager = { home-manager = {
useGlobalPkgs = true; useGlobalPkgs = true;
@@ -101,6 +108,7 @@ in
nwg-displays nwg-displays
tk tk
scrot scrot
yay
]; ];
@@ -108,7 +116,7 @@ in
GTK_IM_MODULE = "kime"; GTK_IM_MODULE = "kime";
QT_IM_MODULE = "kime"; QT_IM_MODULE = "kime";
XMODIFIERS = "@im=kime"; XMODIFIERS = "@im=kime";
} };
# 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";

View File

@@ -1,5 +1,13 @@
{ config, lib, ... }: { config, lib, pkgs, ... }:
let
idea20243 = pkgs.jetbrains.idea-ultimate.overrideAttrs (oldAttrs: {
version = "2024.3.7";
src = pkgs.fetchurl {
url = "https://download-cdn.jetbrains.com/idea/ideaIU-2024.3.7.tar.gz";
sha256 = "a4f56005349d0804b067836021b9b40cca235cdbd9348af0df11772aac8a5caa";
};
});
in
{ {
imports = [ imports = [
# ./example.nix - add your modules here # ./example.nix - add your modules here
@@ -7,6 +15,7 @@
# home-manager options go here # home-manager options go here
home.packages = [ home.packages = [
idea20243
# pkgs.vscode - hydenix's vscode version # pkgs.vscode - hydenix's vscode version
# pkgs.userPkgs.vscode - your personal nixpkgs version # pkgs.userPkgs.vscode - your personal nixpkgs version
]; ];