diff --git a/base-system/packages/user-core-packages.nix b/base-system/packages/user-core-packages.nix index 7ddedbb..d8ea161 100644 --- a/base-system/packages/user-core-packages.nix +++ b/base-system/packages/user-core-packages.nix @@ -1,12 +1,16 @@ pkgs: with pkgs; [ + # Scrolling window manager extension gnomeExtensions.paperwm + # For character search gnome.gnome-characters - thunderbird + # Helix editor and LSPs for helix helix nil + marksman + # Regular apps webcord + thunderbird signal-desktop spotify krita - anki ] diff --git a/markdown/flake.lock b/markdown/flake.lock deleted file mode 100644 index 2342310..0000000 --- a/markdown/flake.lock +++ /dev/null @@ -1,27 +0,0 @@ -{ - "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 1698611440, - "narHash": "sha256-jPjHjrerhYDy3q9+s5EAsuhyhuknNfowY6yt6pjn9pc=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "0cbe9f69c234a7700596e943bfae7ef27a31b735", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/markdown/flake.nix b/markdown/flake.nix deleted file mode 100644 index df62c52..0000000 --- a/markdown/flake.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ - description = "A template flake for editing markdown files (helix on system required)"; - - inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - }; - - outputs = { self, nixpkgs, ... }: - let - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - }; - in { - devShell.x86_64-linux = pkgs.mkShell rec { - name = "markdown"; - packages = with pkgs; [ - marksman - ]; - shellHook = ''export PS1="[\u@markdown:\W]\$ "''; - }; - }; -}