diff options
| author | BossCode45 <boss@tehbox.org> | 2025-06-18 18:20:45 +1200 |
|---|---|---|
| committer | BossCode45 <boss@tehbox.org> | 2025-06-18 18:20:45 +1200 |
| commit | c1b48e9f2bfc4ae0e48d0c8e35ad1f4a2189ec30 (patch) | |
| tree | 4aa62f97d00c3ce2b8b01f8b1c80e545d3772315 /flake.nix | |
| parent | 950de2748306cf41038a6bbd98c849815b256c27 (diff) | |
| download | nixos-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.nix | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -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; |
