aboutsummaryrefslogtreecommitdiff
path: root/home-manager/home.nix
diff options
context:
space:
mode:
authorBossCode45 <boss@tehbox.org>2025-06-18 18:20:45 +1200
committerBossCode45 <boss@tehbox.org>2025-06-18 18:20:45 +1200
commitc1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30 (patch)
tree4aa62f97d00c3ce2b8b01f8b1c80e545d3772315 /home-manager/home.nix
parent950de2748306cf41038a6bbd98c849815b256c27 (diff)
downloadnixos-configuration-c1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30.tar.gz
nixos-configuration-c1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30.zip
feat: Packaged adom and updated some stuff
Made a package for the game adom Also switched form lightdm to sddm YATwm works slightly better Note: The current flake.nix will fail for anyone else as it uses a path to find the flake
Diffstat (limited to 'home-manager/home.nix')
-rw-r--r--home-manager/home.nix26
1 files changed, 15 insertions, 11 deletions
diff --git a/home-manager/home.nix b/home-manager/home.nix
index 8c524aa..fe27af0 100644
--- a/home-manager/home.nix
+++ b/home-manager/home.nix
@@ -8,6 +8,7 @@
./YATwm
./kitty
inputs.spicetify-nix.homeManagerModules.default
+ inputs.nixcord.homeModules.nixcord
#inputs.stylix.homeManagerModules.stylix
];
@@ -19,7 +20,7 @@
# The home.packages option allows you to install Nix packages into your
# environment.
- nixpkgs.config.allowUnfree = true;
+ # nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
feh
pass
@@ -33,7 +34,9 @@
discord
# (discord.override {
# withOpenASAR = true;
+ # withVencord = true;
# })
+ # vesktop
mumble
gimp
bottom
@@ -53,15 +56,6 @@
lunar-client
libnotify
xclip
- (openttd-jgrpp.overrideAttrs (oldAttrs: rec {
- version = "0.63.3";
- src = fetchFromGitHub {
- owner = "JGRennison";
- repo = "OpenTTD-patches";
- rev = "jgrpp-${version}";
- hash = "sha256-853LbApHqQn+ucb7xjFDfohB0/T1h11o4voBgvgbpSI=";
- };
- }))
(python3.withPackages (ps: with ps; [
python-lsp-server
]))
@@ -73,8 +67,11 @@
inputs.polymc.packages.${system}.default
jre8
inputs.zen-browser.packages."${system}".default
+ piper
+ qbittorrent
+ adom
];
-
+
nix = {
#package = pkgs.nix;
settings.experimental-features = [ "nix-command" "flakes" ];
@@ -110,8 +107,14 @@
programs.firefox.enable = true;
+ # programs.nixcord = {
+ # enable = true;
+ # };
+
+
stylix.targets.spicetify.enable = false;
stylix.targets.firefox.profileNames = [ "default"];
+ # stylix.targets.nixcord.enable = true;
programs.spicetify =
let
@@ -132,5 +135,6 @@
theme = spicePkgs.themes.nightlight;
};
+
xsession.windowManager.command = lib.mkForce "$@";
}