Skip to content

Commit

Permalink
add a bunch of programs i've frequently nix-env'd
Browse files Browse the repository at this point in the history
  • Loading branch information
ifd3f committed Jun 11, 2024
1 parent 63d8605 commit 190d109
Showing 1 changed file with 51 additions and 30 deletions.
81 changes: 51 additions & 30 deletions nix/nixos-modules/roles/pc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,28 @@ in {
yubikey-personalization-gui

inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.caligula

config.boot.kernelPackages.perf

android-tools
binwalk
calibre
dasel
ffmpeg
lutris
magic-wormhole
minicom
musescore
nfs-utils
protontricks
scc
socat
sshpass
tiled
tpm2-tools
tpm2-tss
transmission
usbtop
];

users.mutableUsers = true;
Expand Down Expand Up @@ -163,36 +185,35 @@ in {

services.flatpak.enable = true;

/*
# Use dnsmasq to allow live hosts editing in development
services.dnsmasq = {
enable = true;
settings = {
server = [ "1.1.1.1" "8.8.8.8" "8.8.4.4" ];
listen-address = "127.0.0.1";
addn-hosts = extraHosts;
};
};
systemd.services.create-extra-hosts = {
description = "Make extraHosts";
wantedBy = [ "dnsmasq.service" ];
before = [ "dnsmasq.service" ];
script = ''
touch ${extraHosts}
chmod 664 ${extraHosts}
chown dnsmasq:dnsmasq-extra-hosts ${extraHosts}
'';
serviceConfig.Type = "oneshot";
};
users = {
users.dnsmasq.extraGroups = [ "dnsmasq-extra-hosts" ];
groups.dnsmasq-extra-hosts = { };
};
/* # Use dnsmasq to allow live hosts editing in development
services.dnsmasq = {
enable = true;
settings = {
server = [ "1.1.1.1" "8.8.8.8" "8.8.4.4" ];
listen-address = "127.0.0.1";
addn-hosts = extraHosts;
};
};
systemd.services.create-extra-hosts = {
description = "Make extraHosts";
wantedBy = [ "dnsmasq.service" ];
before = [ "dnsmasq.service" ];
script = ''
touch ${extraHosts}
chmod 664 ${extraHosts}
chown dnsmasq:dnsmasq-extra-hosts ${extraHosts}
'';
serviceConfig.Type = "oneshot";
};
users = {
users.dnsmasq.extraGroups = [ "dnsmasq-extra-hosts" ];
groups.dnsmasq-extra-hosts = { };
};
*/

i18n.inputMethod = {
Expand Down

0 comments on commit 190d109

Please sign in to comment.