diff --git a/flake-sandbox/flake.lock b/flake-sandbox/flake.lock deleted file mode 100644 index b600a49..0000000 --- a/flake-sandbox/flake.lock +++ /dev/null @@ -1,27 +0,0 @@ -{ - "nodes": { - "nixpkgs": { - "locked": { - "lastModified": 1681091990, - "narHash": "sha256-ifIzhksUBZKp5WgCuoVhDY32qaEplXp7khzrB6zkaFc=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "ea96b4af6148114421fda90df33cf236ff5ecf1d", - "type": "github" - }, - "original": { - "owner": "nixos", - "ref": "nixos-22.11", - "repo": "nixpkgs", - "type": "github" - } - }, - "root": { - "inputs": { - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/flake-sandbox/flake.nix b/flake-sandbox/flake.nix deleted file mode 100644 index 112447e..0000000 --- a/flake-sandbox/flake.nix +++ /dev/null @@ -1,142 +0,0 @@ -{ - inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11"; - }; - outputs = { - self, - nixpkgs, - }: let - system = "x86_64-linux"; - pkgs = import nixpkgs {inherit system;}; - in { - devShells."${system}".default = pkgs.mkShell { - packages = with pkgs; - with pkgs.gnome; [ - hexchat - audacity - proot - yubikey-manager-qt - cheese - remmina - exiv2 - wireshark-qt - seahorse - kotatogram-desktop - usbutils - networkmanagerapplet - sshfs-fuse - pavucontrol - libwebcam - just - eog - git-crypt - espanso - unetbootin - vcsh - skypeforlinux - du-dust - bind - teamviewer - gparted - neovim - inkscape - rustdesk - gnome-themes-extra - pass - xdg-user-dirs - cbatticon - yubikey-personalization-gui - zoom - signal-desktop - xorg.xbacklight - vscode - ripgrep - lightdm - nixpkgs-fmt - git-lfs - qtpass - gimp - lxappearance - flameshot - thunderbird - fprintd - chromium - evtest - alejandra - vlc - pastebinit - evolution - zbar - libreoffice - brave - pidgin - direnv - xorg.xhost - lorri - firefox - logseq - x11_ssh_askpass - xsel - feh - htop - openvpn - syncthing - ncdu - rofi-pass - testdisk - vanilla-dmz - wireguard-tools - xarchive - gnome-icon-theme - wget - nix-index - mr - passff-host - browserpass - xorg.xcursorthemes - gitRepo - gitSVN - androidenv.androidPkgs_9_0.platform-tools - - # introduces python - (qtile.passthru.unwrapped.overrideAttrs (oldAttrs: { - propagatedBuildInputs = - [] - # ++ oldAttrs.passthru.unwrapped.propagatedBuildInputs - # ++ (with pkgs.python3Packages; [ - # # python-wifi - # # iwlib - # keyring - # ]) - ; - - makeWrapperArgs = - oldAttrs.makeWrapperArgs - ++ [ - "--prefix PATH : ${pkgs.lib.makeBinPath oldAttrs.propagatedBuildInputs}" - ]; - })) - - # gi-docgen - # yelp-tools - # scons - # autorandr - # arandr - # meson - # mercurial - # unrar-wrapper - # orca - # radicale - # criu - # gnome-music - # gnome-browser-connector - # radicale - # hplip - # qtile - # gtk-doc - # asciidoc - # meson - ]; - }; - }; -}