update TODO + added pocket2

This commit is contained in:
Don Harper 2023-10-03 22:03:12 -05:00
parent 4820abced7
commit 326a5a3bf9
3 changed files with 64 additions and 1 deletions

56
TODO.md
View file

@ -3,4 +3,58 @@
## Machine types ## Machine types
- [ ] add HP 810RG1 profile - [ ] add HP 810RG1 profile
- [ ] add ssd to all - [ ] add ssd to all
- [ ] fix eve???? - [x] fix eve????
## Home-manager
Port/import/drop:
- [ ] d_authy
- [ ] d_config-bashtop
- [ ] d_config-qutebrowser
- [ ] d_config-sway
- [ ] d_config-swaylock
- [ ] d_config-vdirsyncer
- [ ] d_config-waybar
- [ ] d_gnupg
- [ ] d_local
- [ ] d_neomutt
- [ ] d_slack
- [ ] d_task
- [ ] d_tmuxinator
- [ ] d_vit
- [ ] f_All_Regions
- [ ] f_Trusted_Region
- [ ] f_Unknown_Region
- [ ] f_Untrusted_Region
- [ ] f_appsrv
- [ ] f_aspell.en.prepl
- [ ] f_aspell.en.pws
- [ ] f_bash_aliases
- [ ] f_bash_functions
- [ ] f_bash_hosts
- [ ] f_bash_logout
- [ ] f_bash_motd
- [ ] f_bash_motd_ownscript
- [ ] f_bash_profile
- [ ] f_bash_ssh
- [ ] f_bashrc
- [ ] f_config
- [ ] f_gitconfig
- [ ] f_inputrc
- [ ] f_listadmin.ini
- [ ] f_mairixrc
- [ ] f_mbsyncrc
- [ ] f_muttprintrc
- [ ] f_myapps
- [ ] f_notmuch
- [ ] f_pw.gpg
- [ ] f_redshift.conf
- [ ] f_signature
- [ ] f_surfraw
- [ ] f_taskopenrc
- [ ] f_tigrc
- [ ] f_tmux-cssh
- [ ] f_tmux.conf
- [ ] f_token
- [ ] f_urlview
- [ ] f_wfclient

View file

@ -40,6 +40,14 @@
./hosts/smaug/hardware-configuration.nix ./hosts/smaug/hardware-configuration.nix
]; ];
}; };
pocket2 = inputs.nixpkgs.lib.nixosSystem {
modules = workstation.modules ++ [
{
networking.hostName = "pocket2";
}
./hosts/pocket2/hardware-configuration.nix
];
};
dragon = inputs.nixpkgs.lib.nixosSystem { dragon = inputs.nixpkgs.lib.nixosSystem {
modules = workstation.modules ++ [ modules = workstation.modules ++ [
{ {

View file

@ -35,5 +35,6 @@
# networking.interfaces.enp0s25.useDHCP = lib.mkDefault true; # networking.interfaces.enp0s25.useDHCP = lib.mkDefault true;
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true; # networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }