aboutsummaryrefslogtreecommitdiff
path: root/flake.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 /flake.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 'flake.nix')
-rw-r--r--flake.nix18
1 files changed, 12 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index 6b14937..3ec4440 100644
--- a/flake.nix
+++ b/flake.nix
@@ -2,13 +2,13 @@
description = "My nixos configuration";
inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
+ nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
home-manager = {
- url = "github:nix-community/home-manager/release-24.11";
+ url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
stylix = {
- url = "github:danth/stylix/release-24.11";
+ url = "github:danth/stylix/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
@@ -17,8 +17,8 @@
};
YATwm = {
#url = "git+https://git.tehbox.org/cgit/boss/YATwm.git";
- url = "github:BossCode45/YATwm";
- #url = "git+file:///home/boss/Documents/Coding/WM/YATwm";
+ #url = "github:BossCode45/YATwm";
+ url = "git+file:///home/boss/Documents/Coding/WM/YATwm";
inputs.nixpkgs.follows = "nixpkgs";
};
# hyprland = {
@@ -41,6 +41,10 @@
url = "github:MarceColl/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
+ nixcord = {
+ url = "github:kaylorben/nixcord";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
};
outputs = inputs@{ nixpkgs, ... }: {
@@ -49,8 +53,10 @@
system = "x86_64-linux";
specialArgs = {inherit inputs;};
modules = [
+ (import ./my-pkgs)
+
./configuration.nix
-
+
inputs.home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;