From 326a5a3bf9cb778b95adbc8f094140b39bf1b906 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 3 Oct 2023 22:03:12 -0500 Subject: [PATCH] update TODO + added pocket2 --- TODO.md | 56 +++++++++++++++++++++++- flake.nix | 8 ++++ hosts/pocket2/hardware-configuration.nix | 1 + 3 files changed, 64 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index 2d31f99..b5a3412 100644 --- a/TODO.md +++ b/TODO.md @@ -3,4 +3,58 @@ ## Machine types - [ ] add HP 810RG1 profile - [ ] 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 + diff --git a/flake.nix b/flake.nix index 3f40a5d..2136250 100644 --- a/flake.nix +++ b/flake.nix @@ -40,6 +40,14 @@ ./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 { modules = workstation.modules ++ [ { diff --git a/hosts/pocket2/hardware-configuration.nix b/hosts/pocket2/hardware-configuration.nix index 3e7dcbe..a9708a3 100644 --- a/hosts/pocket2/hardware-configuration.nix +++ b/hosts/pocket2/hardware-configuration.nix @@ -35,5 +35,6 @@ # networking.interfaces.enp0s25.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; }