diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-12-26 22:12:23 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-12-26 22:12:23 -0600 |
| commit | 13b51359c0b5c5d126adc4ff60d7abd2439c6111 (patch) | |
| tree | d10927f27bd5304edb400929414da0f33faa35f6 | |
| parent | 978085460d7b94d352253ae3cc1ad28046315dcf (diff) | |
flake: update to 22.11
| -rw-r--r-- | flake.nix | 18 | ||||
| -rw-r--r-- | home/path.nix | 1 |
2 files changed, 5 insertions, 14 deletions
@@ -1,10 +1,10 @@ { inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11"; nixpkgsUnstable.url = "github:nixos/nixpkgs"; home-manager = { - url = "github:nix-community/home-manager/release-22.05"; + url = "github:nix-community/home-manager/release-22.11"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -44,18 +44,8 @@ username = "ale"; home = platform: home-manager.lib.homeManagerConfiguration { - system = "x86_64-linux"; - - inherit configuration; - extraModules = [ platform ]; - - inherit username; - homeDirectory = "/home/${username}"; - - # Update the state version as needed. - # See the changelog here: - # https://nix-community.github.io/home-manager/release-notes.html#sec-release-21.05 - stateVersion = "21.11"; + pkgs = import nixpkgs { system = "x86_64-linux"; }; + modules = [ configuration platform ]; # Optionally use extraSpecialArgs # to pass through arguments to home.nix diff --git a/home/path.nix b/home/path.nix index 0e8ced9..5632910 100644 --- a/home/path.nix +++ b/home/path.nix @@ -47,6 +47,7 @@ with lib; { "anydesk" "mssql-tools" "quartus-prime-lite-unwrapped" + "tools" # androidsdk "teams" "zoom" ]; |
