diff --git a/nixos/home.nix b/nixos/home.nix index d5086ea..c425735 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -1,16 +1,6 @@ {...}: { - # Home Manager needs a bit of information about you and the paths it should - # manage. home.username = "foglar"; home.homeDirectory = "/home/foglar"; - - # This value determines the Home Manager release that your configuration is - # compatible with. This helps avoid breakage when a new Home Manager release - # introduces backwards incompatible changes. - # - # You should not change this value, even if you update Home Manager. If you do - # want to update the value, then make sure to first check the Home Manager - # release notes. home.stateVersion = "24.05"; # Please read the comment before changing. imports = [ @@ -60,7 +50,12 @@ ".config/hypr/mocha.conf".source = ../config/mocha.conf; ".config/hypr/hypridle.conf".source = ../config/hypridle.conf; ".config/dolphinrc".source = ../config/dolphinrc; - ".prettierrc".source = ../config/.prettierrc; + ".prettierrc".text = '' + { + "tabWidth": 4, + "useTabs": true + } + ''; # # You can also set the file content immediately. # ".gradle/gradle.properties".text = '' diff --git a/nixos/packages/applications.nix b/nixos/packages/applications.nix index 5047f6b..5457ca3 100644 --- a/nixos/packages/applications.nix +++ b/nixos/packages/applications.nix @@ -18,6 +18,8 @@ vesktop ferdium + gnome.simple-scan + stellarium libreoffice localsend diff --git a/nixos/packages/games.nix b/nixos/packages/games.nix index 560ae53..b093103 100644 --- a/nixos/packages/games.nix +++ b/nixos/packages/games.nix @@ -12,6 +12,7 @@ home.packages = with pkgs; [ vitetris steam + heroic wine (writeShellScriptBin "nvidia-offload" '' diff --git a/nixos/packages/packages.nix b/nixos/packages/packages.nix index 9a9ddf9..d6bd5bf 100644 --- a/nixos/packages/packages.nix +++ b/nixos/packages/packages.nix @@ -27,6 +27,10 @@ builtins.elem (lib.getName pkg) [ "discord" "spotify" + + "webstorm" + "pycharm" + "pycharm-professional" "steam" "steam-unwrapped"