parent
45433358ff
commit
52821346ba
7 changed files with 51 additions and 96 deletions
|
@ -9,11 +9,8 @@
|
|||
direnv.enable = true;
|
||||
fzf.enable = true;
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
|
||||
user.emailAddress = "oliver.davies@tfw.wales";
|
||||
};
|
||||
git.enable = true;
|
||||
git.user.emailAddress = "oliver.davies@tfw.wales";
|
||||
|
||||
node.enable = true;
|
||||
notes.enable = true;
|
||||
|
@ -21,14 +18,11 @@
|
|||
starship.enable = true;
|
||||
tmux.enable = true;
|
||||
|
||||
tmux-sessionizer = {
|
||||
enable = true;
|
||||
|
||||
searchPaths = [
|
||||
tmux-sessionizer.enable = true;
|
||||
tmux-sessionizer.searchPaths = [
|
||||
"${config.xdg.userDirs.extraConfig.XDG_REPOS_DIR}:2"
|
||||
"${config.xdg.userDirs.documents}:1"
|
||||
];
|
||||
};
|
||||
|
||||
todos.enable = true;
|
||||
zsh.enable = true;
|
||||
|
|
|
@ -13,30 +13,22 @@
|
|||
direnv.enable = true;
|
||||
fzf.enable = true;
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
|
||||
user.emailAddress = "oliver@oliverdavies.uk";
|
||||
};
|
||||
git.enable = true;
|
||||
git.user.emailAddress = "oliver@oliverdavies.uk";
|
||||
|
||||
node.enable = true;
|
||||
|
||||
notes = {
|
||||
enable = true;
|
||||
|
||||
directory = "${config.xdg.userDirs.documents}/wiki/notes";
|
||||
};
|
||||
notes.enable = true;
|
||||
notes.directory = "${config.xdg.userDirs.documents}/wiki/notes";
|
||||
|
||||
ranger.enable = true;
|
||||
sxhkd.enable = true;
|
||||
starship.enable = true;
|
||||
tmux.enable = true;
|
||||
|
||||
tmux-sessionizer = {
|
||||
enable = true;
|
||||
enableDmenuIntegration = true;
|
||||
tmux-sessionizer.enable = true;
|
||||
|
||||
searchPaths =
|
||||
tmux-sessionizer.searchPaths =
|
||||
let
|
||||
inherit (config.xdg.userDirs) documents extraConfig;
|
||||
|
||||
|
@ -47,7 +39,6 @@
|
|||
"${repos}/*"
|
||||
documents
|
||||
];
|
||||
};
|
||||
|
||||
todos.enable = true;
|
||||
zsh.enable = true;
|
||||
|
@ -62,11 +53,8 @@
|
|||
browsers = {
|
||||
chromium.enable = true;
|
||||
|
||||
firefox = {
|
||||
enable = true;
|
||||
|
||||
homepageUrl = "https://nixedo.oliverdavies.uk";
|
||||
};
|
||||
firefox.enable = true;
|
||||
firefox.homepageUrl = "https://nixedo.oliverdavies.uk";
|
||||
|
||||
qutebrowser.enable = true;
|
||||
};
|
||||
|
|
|
@ -15,15 +15,12 @@
|
|||
cli = {
|
||||
docker.enable = true;
|
||||
|
||||
password-store = {
|
||||
enable = true;
|
||||
|
||||
extensions = with pkgs.passExtensions; [
|
||||
password-store.enable = true;
|
||||
password-store.extensions = with pkgs.passExtensions; [
|
||||
pass-otp
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
wsl = {
|
||||
enable = true;
|
||||
|
|
|
@ -32,15 +32,11 @@
|
|||
# Bootloader.
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 25;
|
||||
};
|
||||
efi.canTouchEfiVariables = true;
|
||||
efi.efiSysMountPoint = "/boot/efi";
|
||||
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
efiSysMountPoint = "/boot/efi";
|
||||
};
|
||||
systemd-boot.enable = true;
|
||||
systemd-boot.configurationLimit = 25;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -33,10 +33,7 @@
|
|||
services.logind.lidSwitchExternalPower = "ignore";
|
||||
|
||||
boot.loader = {
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
};
|
||||
|
||||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot.enable = true;
|
||||
};
|
||||
|
||||
|
|
|
@ -21,24 +21,18 @@
|
|||
|
||||
features = {
|
||||
cli = {
|
||||
kanata = {
|
||||
enable = true;
|
||||
|
||||
devices = [
|
||||
kanata.enable = true;
|
||||
kanata.devices = [
|
||||
"/dev/input/by-path/platform-i8042-serio-0-event-kbd"
|
||||
];
|
||||
};
|
||||
|
||||
password-store = {
|
||||
enable = true;
|
||||
|
||||
extensions = with pkgs.passExtensions; [
|
||||
password-store.enable = true;
|
||||
password-store.extensions = with pkgs.passExtensions; [
|
||||
pass-audit
|
||||
pass-otp
|
||||
pass-update
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
core = {
|
||||
bluetooth.enable = true;
|
||||
|
@ -73,14 +67,10 @@
|
|||
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 10;
|
||||
};
|
||||
systemd-boot.enable = true;
|
||||
systemd-boot.configurationLimit = 10;
|
||||
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
};
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -17,11 +17,8 @@
|
|||
];
|
||||
|
||||
features = {
|
||||
core = {
|
||||
bluetooth.enable = true;
|
||||
zram.enable = true;
|
||||
};
|
||||
|
||||
core.bluetooth.enable = true;
|
||||
core.zram.enable = true;
|
||||
desktop.dconf.enable = true;
|
||||
};
|
||||
|
||||
|
@ -29,14 +26,10 @@
|
|||
|
||||
boot = {
|
||||
loader = {
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
configurationLimit = 10;
|
||||
};
|
||||
efi.canTouchEfiVariables = true;
|
||||
|
||||
efi = {
|
||||
canTouchEfiVariables = true;
|
||||
};
|
||||
systemd-boot.enable = true;
|
||||
systemd-boot.configurationLimit = 10;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue