update: migrate to nixos-unstable

also fixes broken easyeffects build by pinning to 24.05 (uakari)
This commit is contained in:
Youwen Wu 2024-07-31 16:52:12 -07:00
parent 5fa8e27709
commit 7d3b8a6dc5
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3
5 changed files with 43 additions and 15 deletions

View file

@ -120,16 +120,15 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1720042825, "lastModified": 1722462338,
"narHash": "sha256-A0vrUB6x82/jvf17qPCpxaM+ulJnD8YZwH9Ci0BsAzE=", "narHash": "sha256-ss0G8t8RJVDewA3MyqgAlV951cWRK6EtVhVKEZ7J5LU=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "e1391fb22e18a36f57e6999c7a9f966dc80ac073", "rev": "6e090576c4824b16e8759ebca3958c5b09659ee8",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-24.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
@ -163,16 +162,16 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1720553833, "lastModified": 1722185531,
"narHash": "sha256-IXMiHQMtdShDXcBW95ctA+m5Oq2kLxnBt7WlMxvDQXA=", "narHash": "sha256-veKR07psFoJjINLC8RK4DiLniGGMgF3QMlS4tb74S6k=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "249fbde2a178a2ea2638b65b9ecebd531b338cf9", "rev": "52ec9ac3b12395ad677e8b62106f0b98c1f8569d",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "nixos",
"ref": "nixos-24.05", "ref": "nixos-unstable",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
@ -225,7 +224,8 @@
"catppuccin": "catppuccin", "catppuccin": "catppuccin",
"home-manager": "home-manager", "home-manager": "home-manager",
"lanzaboote": "lanzaboote", "lanzaboote": "lanzaboote",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"stablepkgs": "stablepkgs"
} }
}, },
"rust-overlay": { "rust-overlay": {
@ -253,6 +253,22 @@
"type": "github" "type": "github"
} }
}, },
"stablepkgs": {
"locked": {
"lastModified": 1722221733,
"narHash": "sha256-sga9SrrPb+pQJxG1ttJfMPheZvDOxApFfwXCFO0H9xw=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "12bf09802d77264e441f48e25459c10c93eada2e",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-24.05",
"repo": "nixpkgs",
"type": "github"
}
},
"systems": { "systems": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1681028828,

View file

@ -2,11 +2,12 @@
description = "System configuration flake."; description = "System configuration flake.";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = { home-manager = {
url = "github:nix-community/home-manager/release-24.05"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
stablepkgs.url = "github:nixos/nixpkgs/nixos-24.05";
catppuccin.url = "github:catppuccin/nix"; catppuccin.url = "github:catppuccin/nix";
# zimfw.url = "github:joedevivo/zimfw.nix"; # zimfw.url = "github:joedevivo/zimfw.nix";
lanzaboote = { lanzaboote = {
@ -17,8 +18,8 @@
}; };
}; };
outputs = outputs = { self, nixpkgs, home-manager, catppuccin, lanzaboote, stablepkgs
{ self, nixpkgs, home-manager, catppuccin, lanzaboote, ... }@inputs: { , ... }@inputs: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt; formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
@ -47,6 +48,15 @@
}; };
}) })
{
nixpkgs.overlays = [
(self: super: {
easyeffects =
stablepkgs.legacyPackages.${self.system}.easyeffects;
})
];
}
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;

View file

@ -85,6 +85,7 @@
}; };
services.easyeffects.enable = true; services.easyeffects.enable = true;
services.easyeffects.package = pkgs.easyeffects;
programs.fzf = { programs.fzf = {
enable = true; enable = true;

View file

@ -1,7 +1,7 @@
{ {
enable = true; enable = true;
settings = { settings = {
exec-once = [ "waybar" "waypaper --restore" ]; exec-once = [ "waypaper --restore" ];
"$mod" = "SUPER"; "$mod" = "SUPER";
"$Left" = "Y"; "$Left" = "Y";
"$Right" = "O"; "$Right" = "O";

View file

@ -85,4 +85,5 @@
}; };
}; };
style = ./waybar.css; style = ./waybar.css;
systemd.enable = true;
} }