changes for distrobox

This commit is contained in:
Tyler Starr 2023-10-09 21:23:12 -07:00
parent 5e0e078479
commit 2df2793f90
4 changed files with 12 additions and 7 deletions

View File

@ -0,0 +1,8 @@
#!/bin/bash
# https://github.com/starr-dusT/dotfiles
sudo pacman -S python python-pip
pip install cadquery --break-system-packages
curl -LO https://github.com/CadQuery/CQ-editor/releases/download/nightly/CQ-editor-master-Linux-x86_64.sh
sh CQ-editor-master-Linux-x86_64.sh
rm CQ-editor-master-Linux-x86_64.sh

View File

@ -22,7 +22,6 @@ alias ca="chezmoi apply"
alias ce='chezmoi edit'
# trashcli
alias rm='echo "This is not the command you are looking for."; false'
alias tp='trash-put'
alias te='trash-empty'
alias tl='trash-list'

View File

@ -49,10 +49,8 @@
];
# Enable docker
virtualisation.docker.rootless = {
enable = true;
setSocketVariable = true;
};
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
# Define user account.
users.users.${user} = {
@ -72,6 +70,7 @@
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
# One-off stable packages
distrobox
] ++ [
# One-off unstable packages
];
@ -84,7 +83,7 @@
devel = {
engineering.enable = true;
notes.enable = true;
python.enable = true;
python.enable = false;
tooling.enable = true;
};
gaming = {

View File

@ -20,7 +20,6 @@ in {
beancount
fava
nodePackages_latest.pyright
distrobox
];
};
}