this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: switch to NixOS 23.05 and add Home Manager

+40 -7
+29 -6
flake.lock
··· 1 1 { 2 2 "nodes": { 3 + "home-manager": { 4 + "inputs": { 5 + "nixpkgs": [ 6 + "nixpkgs" 7 + ] 8 + }, 9 + "locked": { 10 + "lastModified": 1689495092, 11 + "narHash": "sha256-yZu2j5FpLZEPhJQQutMCPTxa1VMigLPabLYvLTq6ASM=", 12 + "owner": "nix-community", 13 + "repo": "home-manager", 14 + "rev": "2f84579a70b8c74e5ebb37299a0c3ba279f09382", 15 + "type": "github" 16 + }, 17 + "original": { 18 + "owner": "nix-community", 19 + "repo": "home-manager", 20 + "type": "github" 21 + } 22 + }, 3 23 "nixpkgs": { 4 24 "locked": { 5 - "lastModified": 1684363872, 6 - "narHash": "sha256-jkvhzrICFSmj+NBHksKTWzs8Q3+D7RsVK0wLKacbu8s=", 7 - "owner": "NixOS", 25 + "lastModified": 1689431009, 26 + "narHash": "sha256-hPgQCRWP5q/Xc4qOIP3c2krR9nQua78+t9EDiuey5nc=", 27 + "owner": "nixos", 8 28 "repo": "nixpkgs", 9 - "rev": "1d77f3b72756ca36f16440c59e6b89a957908647", 29 + "rev": "af8279f65fe71ce5a448408034a8c06e2b4b2c66", 10 30 "type": "github" 11 31 }, 12 32 "original": { 13 - "id": "nixpkgs", 14 - "type": "indirect" 33 + "owner": "nixos", 34 + "ref": "nixos-23.05", 35 + "repo": "nixpkgs", 36 + "type": "github" 15 37 } 16 38 }, 17 39 "root": { 18 40 "inputs": { 41 + "home-manager": "home-manager", 19 42 "nixpkgs": "nixpkgs" 20 43 } 21 44 }
+11 -1
flake.nix
··· 1 1 { 2 2 description = "NixOS"; 3 3 4 - outputs = { self, nixpkgs }: { 4 + inputs = { 5 + nixpkgs = { 6 + url = "github:nixos/nixpkgs/nixos-23.05"; 7 + }; 8 + home-manager = { 9 + url = "github:nix-community/home-manager"; 10 + inputs.nixpkgs.follows = "nixpkgs"; 11 + }; 12 + }; 13 + 14 + outputs = { self, nixpkgs, home-manager }: { 5 15 nixosConfigurations.main = nixpkgs.lib.nixosSystem { 6 16 system = "aarch64-linux"; 7 17 modules = [