Revert "Switch to unstable"

This reverts commit d0fa636f97.
This commit is contained in:
Torjus Håkestad 2024-05-24 00:05:28 +02:00
parent e54e88e1e9
commit ad48cd7147
9 changed files with 32 additions and 32 deletions

View File

@ -3,8 +3,8 @@
inputs = { inputs = {
# nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; # nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
nixpkgs-stable.url = "github:nixos/nixpkgs?ref=nixos-23.11"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-23.11";
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager?ref=release-23.11"; url = "github:nix-community/home-manager?ref=release-23.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -17,7 +17,7 @@
outputs = outputs =
{ self { self
, nixpkgs , nixpkgs
, nixpkgs-stable , nixpkgs-unstable
, sops-nix , sops-nix
, notlistener , notlistener
, ghettoptt , ghettoptt
@ -26,8 +26,8 @@
let let
system = "x86_64-linux"; system = "x86_64-linux";
user = "torjus"; user = "torjus";
overlay-stable = final: prev: { overlay-unstable = final: prev: {
stable = import nixpkgs-stable { unstable = import nixpkgs-unstable {
inherit system; inherit system;
config.allowUnfree = true; config.allowUnfree = true;
}; };
@ -46,7 +46,7 @@
modules = [ modules = [
({ config, pkgs, ... }: { ({ config, pkgs, ... }: {
nixpkgs.overlays = [ nixpkgs.overlays = [
overlay-stable overlay-unstable
ghettoptt.overlays.default ghettoptt.overlays.default
]; ];
}) })
@ -60,7 +60,7 @@
modules = [ modules = [
({ config, pkgs, ... }: { ({ config, pkgs, ... }: {
nixpkgs.overlays = [ nixpkgs.overlays = [
overlay-stable overlay-unstable
notlistener.overlays.default notlistener.overlays.default
ghettoptt.overlays.default ghettoptt.overlays.default
]; ];

View File

@ -1,7 +1,7 @@
{ config, osConfig, pkgs, ... }: { { config, osConfig, pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
hypridle unstable.hypridle
]; ];
xdg.configFile = { xdg.configFile = {
"hypr/hypridle.conf" = { "hypr/hypridle.conf" = {

View File

@ -24,7 +24,7 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
package = pkgs.hyprland; package = pkgs.unstable.hyprland;
settings = { settings = {
"$mainMod" = "SUPER"; "$mainMod" = "SUPER";
"$shiftMainMod" = "SUPER_SHIFT"; "$shiftMainMod" = "SUPER_SHIFT";

View File

@ -24,7 +24,7 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
package = pkgs.hyprland; package = pkgs.unstable.hyprland;
settings = { settings = {
"$mainMod" = "SUPER"; "$mainMod" = "SUPER";
"$shiftMainMod" = "SUPER_SHIFT"; "$shiftMainMod" = "SUPER_SHIFT";

View File

@ -20,7 +20,7 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
package = pkgs.hyprland; package = pkgs.unstable.hyprland;
settings = { settings = {
"$mainMod" = "SUPER"; "$mainMod" = "SUPER";
"$shiftMainMod" = "SUPER_SHIFT"; "$shiftMainMod" = "SUPER_SHIFT";

View File

@ -1,7 +1,7 @@
{ config, osConfig, pkgs, ... }: { { config, osConfig, pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
hyprlock unstable.hyprlock
]; ];
xdg.configFile = { xdg.configFile = {
"hypr/hyprlock.conf" = { "hypr/hyprlock.conf" = {

View File

@ -12,19 +12,19 @@ in
age age
alacritty alacritty
bat bat
btop unstable.btop
# (unstable.btop.override { # (unstable.btop.override {
# cudaSupport = true; # cudaSupport = true;
# }) # })
bzip2 bzip2
croc croc
dust unstable.dust
easyeffects easyeffects
eza eza
fd fd
ffmpeg ffmpeg
file file
fzf unstable.fzf
go-task go-task
glib glib
jq jq
@ -39,7 +39,7 @@ in
pamixer pamixer
pinentry pinentry
pre-commit pre-commit
(prismlauncher.override { (unstable.prismlauncher.override {
withWaylandGLFW = true; withWaylandGLFW = true;
}) })
pulseaudio pulseaudio
@ -52,19 +52,19 @@ in
spotify spotify
spicetify-cli spicetify-cli
sshfs sshfs
tldr unstable.tldr
devenv unstable.devenv
ventoy unstable.ventoy
discord discord
zoxide zoxide
# k8s tools # k8s tools
talosctl unstable.talosctl
k9s unstable.k9s
cilium-cli unstable.cilium-cli
kubernetes-helm unstable.kubernetes-helm
cmctl unstable.cmctl
krew unstable.krew
# steam # steam
# steam-run # steam-run
@ -73,8 +73,8 @@ in
tokei tokei
unzip unzip
yt-dlp yt-dlp
zoom-us unstable.zoom-us
vmware-horizon-client unstable.vmware-horizon-client
# Editors # Editors
# vscode # vscode
@ -90,7 +90,7 @@ in
typescript typescript
# Py stuff # Py stuff
(python312.withPackages (p: with p; [ (unstable.python312.withPackages (p: with p; [
requests requests
ipython ipython
])) ]))
@ -103,7 +103,7 @@ in
rust-analyzer rust-analyzer
# blender # blender
(blender.override { (unstable.blender.override {
cudaSupport = withCuda; cudaSupport = withCuda;
}) })

View File

@ -3,10 +3,10 @@
programs.direnv = { programs.direnv = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
package = pkgs.direnv; package = pkgs.unstable.direnv;
nix-direnv = { nix-direnv = {
enable = true; enable = true;
package = pkgs.nix-direnv; package = pkgs.unstable.nix-direnv;
}; };
}; };
programs.zsh = { programs.zsh = {

View File

@ -94,7 +94,7 @@
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;
xwayland.enable = true; xwayland.enable = true;
portalPackage = pkgs.xdg-desktop-portal-hyprland; portalPackage = pkgs.unstable.xdg-desktop-portal-hyprland;
}; };
# Setup common XDG env vars # Setup common XDG env vars