updates
This commit is contained in:
parent
2f03b3f412
commit
38c2b267ce
3 changed files with 61 additions and 12 deletions
|
@ -28,7 +28,7 @@ jobs:
|
||||||
- name: "Setup: Runner"
|
- name: "Setup: Runner"
|
||||||
run: |
|
run: |
|
||||||
apt update -y
|
apt update -y
|
||||||
apt install git nodejs nix-bin -y
|
apt install git nodejs nix-bin sudo -y
|
||||||
git config --global user.email "${{github.actor}}"
|
git config --global user.email "${{github.actor}}"
|
||||||
git config --global user.name "Albert J. Copeland"
|
git config --global user.name "Albert J. Copeland"
|
||||||
- name: "Setup: SSH"
|
- name: "Setup: SSH"
|
||||||
|
|
|
@ -3,16 +3,17 @@
|
||||||
../../modules/fonts.nix
|
../../modules/fonts.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable sound with pipewire.
|
services = {
|
||||||
hardware.pulseaudio.enable = false;
|
gnome.gnome-keyring.enable = true;
|
||||||
sound.enable = true;
|
pipewire = {
|
||||||
security.rtkit.enable = true;
|
|
||||||
services.pipewire = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
alsa = {
|
||||||
alsa.support32Bit = true;
|
enable = true;
|
||||||
|
support32Bit = true;
|
||||||
|
};
|
||||||
pulse.enable = true;
|
pulse.enable = true;
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# Configure keymap in X11
|
# Configure keymap in X11
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
|
@ -31,5 +32,53 @@
|
||||||
xfce.xfwm4-themes
|
xfce.xfwm4-themes
|
||||||
dconf2nix # https://github.com/gvolpe/dconf2nix
|
dconf2nix # https://github.com/gvolpe/dconf2nix
|
||||||
arc-theme
|
arc-theme
|
||||||
|
blueman
|
||||||
|
chromium
|
||||||
|
deja-dup
|
||||||
|
drawing
|
||||||
|
elementary-xfce-icon-theme
|
||||||
|
evince
|
||||||
|
firefox
|
||||||
|
foliate
|
||||||
|
font-manager
|
||||||
|
gimp-with-plugins
|
||||||
|
gnome.file-roller
|
||||||
|
gnome.gnome-disk-utility
|
||||||
|
inkscape-with-extensions
|
||||||
|
libqalculate
|
||||||
|
libreoffice
|
||||||
|
orca
|
||||||
|
pavucontrol
|
||||||
|
qalculate-gtk
|
||||||
|
thunderbird
|
||||||
|
wmctrl
|
||||||
|
xclip
|
||||||
|
xcolor
|
||||||
|
xcolor
|
||||||
|
xdo
|
||||||
|
xdotool
|
||||||
|
xfce.catfish
|
||||||
|
xfce.gigolo
|
||||||
|
xfce.orage
|
||||||
|
xfce.xfburn
|
||||||
|
xfce.xfce4-appfinder
|
||||||
|
xfce.xfce4-clipman-plugin
|
||||||
|
xfce.xfce4-cpugraph-plugin
|
||||||
|
xfce.xfce4-dict
|
||||||
|
xfce.xfce4-fsguard-plugin
|
||||||
|
xfce.xfce4-genmon-plugin
|
||||||
|
xfce.xfce4-netload-plugin
|
||||||
|
xfce.xfce4-panel
|
||||||
|
xfce.xfce4-pulseaudio-plugin
|
||||||
|
xfce.xfce4-systemload-plugin
|
||||||
|
xfce.xfce4-weather-plugin
|
||||||
|
xfce.xfce4-whiskermenu-plugin
|
||||||
|
xfce.xfce4-xkb-plugin
|
||||||
|
xfce.xfdashboard
|
||||||
|
xorg.xev
|
||||||
|
xsel
|
||||||
|
xtitle
|
||||||
|
xwinmosaic
|
||||||
|
zuki-themes
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, desktop, username, ... }: {
|
{ desktop, username, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../../users/${username}
|
../../users/${username}
|
||||||
../../common/desktops/${desktop}
|
../../common/desktops/${desktop}
|
||||||
|
|
Loading…
Reference in a new issue