diff options
-rw-r--r-- | flake.lock | 15 | ||||
-rw-r--r-- | flake.nix | 4 | ||||
-rw-r--r-- | hosts/morpheus/configuration.nix | 6 |
3 files changed, 15 insertions, 10 deletions
@@ -28,32 +28,31 @@ | |||
28 | ] | 28 | ] |
29 | }, | 29 | }, |
30 | "locked": { | 30 | "locked": { |
31 | "lastModified": 1695108154, | 31 | "lastModified": 1695738267, |
32 | "narHash": "sha256-gSg7UTVtls2yO9lKtP0yb66XBHT1Fx5qZSZbGMpSn2c=", | 32 | "narHash": "sha256-LTNAbTQ96xSj17xBfsFrFS9i56U2BMLpD0BduhrsVkU=", |
33 | "owner": "nix-community", | 33 | "owner": "nix-community", |
34 | "repo": "home-manager", | 34 | "repo": "home-manager", |
35 | "rev": "07682fff75d41f18327a871088d20af2710d4744", | 35 | "rev": "0f4e5b4999fd6a42ece5da8a3a2439a50e48e486", |
36 | "type": "github" | 36 | "type": "github" |
37 | }, | 37 | }, |
38 | "original": { | 38 | "original": { |
39 | "owner": "nix-community", | 39 | "owner": "nix-community", |
40 | "ref": "release-23.05", | ||
41 | "repo": "home-manager", | 40 | "repo": "home-manager", |
42 | "type": "github" | 41 | "type": "github" |
43 | } | 42 | } |
44 | }, | 43 | }, |
45 | "nixpkgs": { | 44 | "nixpkgs": { |
46 | "locked": { | 45 | "locked": { |
47 | "lastModified": 1695559356, | 46 | "lastModified": 1695644571, |
48 | "narHash": "sha256-kXZ1pUoImD9OEbPCwpTz4tHsNTr4CIyIfXb3ocuR8sI=", | 47 | "narHash": "sha256-asS9dCCdlt1lPq0DLwkVBbVoEKuEuz+Zi3DG7pR/RxA=", |
49 | "owner": "nixos", | 48 | "owner": "nixos", |
50 | "repo": "nixpkgs", | 49 | "repo": "nixpkgs", |
51 | "rev": "261abe8a44a7e8392598d038d2e01f7b33cf26d0", | 50 | "rev": "6500b4580c2a1f3d0f980d32d285739d8e156d92", |
52 | "type": "github" | 51 | "type": "github" |
53 | }, | 52 | }, |
54 | "original": { | 53 | "original": { |
55 | "owner": "nixos", | 54 | "owner": "nixos", |
56 | "ref": "nixos-23.05", | 55 | "ref": "nixos-unstable", |
57 | "repo": "nixpkgs", | 56 | "repo": "nixpkgs", |
58 | "type": "github" | 57 | "type": "github" |
59 | } | 58 | } |
@@ -1,10 +1,10 @@ | |||
1 | { | 1 | { |
2 | description = "My nix config"; | 2 | description = "My nix config"; |
3 | inputs = { | 3 | inputs = { |
4 | nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05"; | 4 | nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; |
5 | 5 | ||
6 | home-manager = { | 6 | home-manager = { |
7 | url = "github:nix-community/home-manager/release-23.05"; | 7 | url = "github:nix-community/home-manager"; |
8 | inputs.nixpkgs.follows = "nixpkgs"; | 8 | inputs.nixpkgs.follows = "nixpkgs"; |
9 | }; | 9 | }; |
10 | 10 | ||
diff --git a/hosts/morpheus/configuration.nix b/hosts/morpheus/configuration.nix index c3667f1..7b39b4b 100644 --- a/hosts/morpheus/configuration.nix +++ b/hosts/morpheus/configuration.nix | |||
@@ -12,6 +12,12 @@ | |||
12 | casks = [ "brave-browser" "karabiner-elements" ]; | 12 | casks = [ "brave-browser" "karabiner-elements" ]; |
13 | }; | 13 | }; |
14 | 14 | ||
15 | nix = { | ||
16 | extraOptions = '' | ||
17 | experimental-features = nix-command flakes | ||
18 | ''; | ||
19 | }; | ||
20 | |||
15 | system.activationScripts.applications.text = pkgs.lib.mkForce ( | 21 | system.activationScripts.applications.text = pkgs.lib.mkForce ( |
16 | '' | 22 | '' |
17 | echo "setting up ~/Applications..." >&2 | 23 | echo "setting up ~/Applications..." >&2 |