diff options
Diffstat (limited to 'nixos/profiles')
-rw-r--r-- | nixos/profiles/common/default.nix | 2 | ||||
-rw-r--r-- | nixos/profiles/workstation/create.nix | 1 | ||||
-rw-r--r-- | nixos/profiles/workstation/default.nix | 2 | ||||
-rw-r--r-- | nixos/profiles/workstation/dev.nix | 4 |
4 files changed, 7 insertions, 2 deletions
diff --git a/nixos/profiles/common/default.nix b/nixos/profiles/common/default.nix index 2b07724..a508a32 100644 --- a/nixos/profiles/common/default.nix +++ b/nixos/profiles/common/default.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: let - sources = import ../../npins; + sources = import <top/npins>; in { imports = [ diff --git a/nixos/profiles/workstation/create.nix b/nixos/profiles/workstation/create.nix index 924717f..b574b47 100644 --- a/nixos/profiles/workstation/create.nix +++ b/nixos/profiles/workstation/create.nix @@ -6,6 +6,7 @@ typst + inkscape gimp krita ]; diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index 0332200..833ce3c 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -2,7 +2,7 @@ let cfg = config.workstation; - sources = import ../../npins; + sources = import <top/npins>; nixGit = import (pkgs.fetchFromGitHub { owner = "NixOS"; repo = "nix"; diff --git a/nixos/profiles/workstation/dev.nix b/nixos/profiles/workstation/dev.nix index ea39b83..92992cb 100644 --- a/nixos/profiles/workstation/dev.nix +++ b/nixos/profiles/workstation/dev.nix @@ -30,6 +30,10 @@ vscodium # I'm installing extensions via my install-imperative script. platformio + + # language servers + # rust-analyzer is installed via rustup + nixd ]; virtualisation.podman = { |