many updates to Kestrel

This commit is contained in:
Tyler Starr 2023-10-07 02:16:26 -07:00
parent 379627f1e6
commit e073cdccd5
6 changed files with 43 additions and 16 deletions

View File

@ -15,17 +15,28 @@
url = "https://github.com/wbthomason/packer.nvim.git"
refreshPeriod = "168h"
[".config/xmonad/xmonad"]
[".task"]
type = "git-repo"
url = "https://github.com/xmonad/xmonad"
url = "git@github.com:starr-dusT/task.git"
refreshPeriod = "168h"
[".config/xmonad/xmonad-contrib"]
["documents/zet"]
type = "git-repo"
url = "https://github.com/xmonad/xmonad-contrib"
url = "git@github.com:starr-dusT/zet.git"
refreshPeriod = "168h"
[".config/xmonad/xmobar"]
type = "git-repo"
url = "https://codeberg.org/xmobar/xmobar"
refreshPeriod = "168h"
### OLD ###
#[".config/xmonad/xmonad"]
# type = "git-repo"
# url = "https://github.com/xmonad/xmonad"
# refreshPeriod = "168h"
#
#[".config/xmonad/xmonad-contrib"]
# type = "git-repo"
# url = "https://github.com/xmonad/xmonad-contrib"
# refreshPeriod = "168h"
#
#[".config/xmonad/xmobar"]
# type = "git-repo"
# url = "https://codeberg.org/xmobar/xmobar"
# refreshPeriod = "168h"

View File

@ -1,3 +1,3 @@
#!/usr/bin/env bash
sudo mount -t cifs -o rw,uid=$(id -u $(whoami)),gid=$(id -g $(whoami)),vers=3.0,credentials=/home/tstarr/.smb //192.168.1.136/private /home/tstarr/mnt/engi
sudo mount -t cifs -o rw,uid=$(id -u $(whoami)),gid=$(id -g $(whoami)),vers=3.0,credentials=/home/tstarr/.smb //192.168.1.175/private /home/tstarr/mnt/engi

View File

@ -91,7 +91,8 @@ gaps left 0
for_window [title="Steam - News"] floating enable
for_window [title="Friends List"] floating enable
for_window [title="Picture-in-Picture"] sticky toggle
for_window [title=".*mpv$"] sticky toggle
for_window [title=".*mpv$"] floating enable
for_window [app_id="file"] floating enable, \
border pixel 5, \
@ -197,6 +198,7 @@ mode open {
bindsym b exec chromium, $e
bindsym s exec steam || flatpak run com.valvesoftware.Steam, $e
bindsym d exec discord || flatpak run com.discordapp.Discord, $e
bindsym m exec mpv $(wl-paste), $e
bindsym Escape mode default
}

View File

@ -52,7 +52,7 @@
# Define user account.
users.users.${user} = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" "libvirtd" ]; # Enable sudo for the user.
extraGroups = [ "dialout" "wheel" "docker" "libvirtd" ]; # Enable sudo for the user.
};
# List packages installed in system profile.

View File

@ -4,10 +4,17 @@ let cfg = config.modules.services.peripherals;
in {
options.modules.services.peripherals.enable = lib.mkEnableOption "peripherals";
config = lib.mkIf cfg.enable {
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
hardware.pulseaudio.support32Bit = true;
# rtkit is optional but recommended
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
};
services = {
gvfs.enable = true;

View File

@ -1,4 +1,4 @@
{ config, lib, pkgs, user, ... }:
{ config, lib, pkgs, pkgs-unstable, user, ... }:
let cfg = config.modules.system.terminal;
in {
@ -32,6 +32,13 @@ in {
# for neovim
nodejs
ripgrep
] ++ [
pkgs-unstable.taskwarrior
# for taskwarrior
pkgs-unstable.taskwarrior-tui
pkgs-unstable.taskopen
pkgs-unstable.timewarrior
];
};
}