summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2026-01-31 15:10:46 -0500
committerJon Santmyer <jon@jonsantmyer.com>2026-01-31 15:10:46 -0500
commitf061e0b0c7ed745f372a89d5ec5f69dbd818c731 (patch)
tree6df41e1666046bb9292a3be74b278b2ba68bf78d /flake.nix
parent968c8b2ad3459c9834c3d4ccb799031f9be5b6ca (diff)
downloadnix-config-f061e0b0c7ed745f372a89d5ec5f69dbd818c731.tar.gz
nix-config-f061e0b0c7ed745f372a89d5ec5f69dbd818c731.tar.bz2
nix-config-f061e0b0c7ed745f372a89d5ec5f69dbd818c731.zip
desktop changes 2026-01-31
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix18
1 files changed, 5 insertions, 13 deletions
diff --git a/flake.nix b/flake.nix
index e93b180..a45bca1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,27 +1,21 @@
{
description = "Jon's NixOS configuration";
-
+
inputs = {
- nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
+ nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
-
+
home-manager = {
- url = "github:nix-community/home-manager";
+ url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
-
- lsfg-vk-flake.url = "github:pabloaul/lsfg-vk-flake/main";
- lsfg-vk-flake.inputs.nixpkgs.follows = "nixpkgs";
-
- nix-index-database.url = "github:Mic92/nix-index-database";
};
outputs = inputs @ {
self,
nixpkgs,
nixpkgs-unstable,
- nix-index-database,
- lsfg-vk-flake,
+ home-manager,
...
}: let
system = "x86_64-linux";
@@ -51,8 +45,6 @@
inherit system;
specialArgs = {inherit lib inputs system; rootPath=./.;};
modules = [
- nix-index-database.nixosModules.nix-index
- lsfg-vk-flake.nixosModules.default
{
nixpkgs.pkgs = pkgs;
modules.device.name = lib.mkDefault (builtins.baseNameOf path);