now fuzzel and so on. Idk what happened last time

This commit is contained in:
2025-08-24 14:54:50 +02:00
parent 1b56d25e41
commit 1cac4ca84d
17 changed files with 811 additions and 160 deletions

View File

@@ -3,7 +3,6 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixStable.url = "github:NixOS/nixpkgs/nixos-24.11";
home-manager = {
url = "github:nix-community/home-manager";
@@ -14,9 +13,11 @@
nvf.url = "github:notashelf/nvf";
zen-browser.url = "github:0xc000022070/zen-browser-flake";
};
outputs = { self, nixpkgs, nvf, ... }@inputs:
outputs = { self, nixpkgs, nvf, zen-browser, ... }@inputs:
let system = "x86_64-linux"; in
{
nixosConfigurations.my-nixos = nixpkgs.lib.nixosSystem {
@@ -26,6 +27,7 @@
};
modules = [
./configuration.nix
# inputs.zen-browser.packages."${system}".default
# nvf.homeManagerModules.default
inputs.home-manager.nixosModules.default
];