Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
5f4f69ae26
19
flake.nix
19
flake.nix
|
@ -235,16 +235,16 @@
|
||||||
hardware.nixosModules.framework-13-7040-amd
|
hardware.nixosModules.framework-13-7040-amd
|
||||||
|
|
||||||
common
|
common
|
||||||
|
password-manager
|
||||||
graphical-workstation
|
graphical-workstation
|
||||||
laptop
|
laptop
|
||||||
gaming
|
gaming
|
||||||
|
|
||||||
./nixos/foxtrot.nix
|
./nixos/foxtrot.nix
|
||||||
|
|
||||||
{
|
({pkgs, ...}: {
|
||||||
home-manager.users.daniel = {
|
home-manager.users.daniel = {
|
||||||
imports = with homeManagerModules; [
|
imports = with homeManagerModules; [
|
||||||
pass
|
|
||||||
senpai
|
senpai
|
||||||
iex
|
iex
|
||||||
cargo
|
cargo
|
||||||
|
@ -252,7 +252,19 @@
|
||||||
linux-desktop-environment-config
|
linux-desktop-environment-config
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
environment.systemPackages = with pkgs; [
|
||||||
|
fw-ectool
|
||||||
|
(writeShellApplication
|
||||||
|
{
|
||||||
|
name = "reset-wifi-module";
|
||||||
|
runtimeInputs = with pkgs; [kmod];
|
||||||
|
text = ''
|
||||||
|
modprobe -rv mt7921e
|
||||||
|
modprobe -v mt7921e
|
||||||
|
'';
|
||||||
|
})
|
||||||
|
];
|
||||||
|
})
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -263,6 +275,7 @@
|
||||||
hardware.nixosModules.lenovo-thinkpad-x1-yoga
|
hardware.nixosModules.lenovo-thinkpad-x1-yoga
|
||||||
|
|
||||||
common
|
common
|
||||||
|
password-manager
|
||||||
graphical-workstation
|
graphical-workstation
|
||||||
laptop
|
laptop
|
||||||
gaming
|
gaming
|
||||||
|
|
|
@ -161,9 +161,10 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
password-manager = {pkgs, ...}: {
|
password-manager = {pkgs, ...}: {
|
||||||
programs.goldwarden = {
|
# programs.goldwarden = {
|
||||||
enable = true;
|
# NOTE: This didn't seem to work for me, but would be awesome!
|
||||||
};
|
# enable = true;
|
||||||
|
# };
|
||||||
|
|
||||||
home-manager.users.daniel = {
|
home-manager.users.daniel = {
|
||||||
imports = with homeManagerModules; [
|
imports = with homeManagerModules; [
|
||||||
|
@ -238,6 +239,7 @@
|
||||||
imports = with nixosModules; [
|
imports = with nixosModules; [
|
||||||
postgres
|
postgres
|
||||||
podman
|
podman
|
||||||
|
troubleshooting-tools
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||||
|
@ -334,6 +336,7 @@
|
||||||
bottom
|
bottom
|
||||||
nmap
|
nmap
|
||||||
dogdns
|
dogdns
|
||||||
|
inetutils
|
||||||
dnsutils
|
dnsutils
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
@ -342,7 +345,6 @@
|
||||||
imports = with nixosModules; [
|
imports = with nixosModules; [
|
||||||
plasma6
|
plasma6
|
||||||
fonts
|
fonts
|
||||||
troubleshooting-tools
|
|
||||||
development-tools
|
development-tools
|
||||||
printing
|
printing
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue