Fixed 1pass
This commit is contained in:
parent
51c8487662
commit
9914cb2ba0
16 changed files with 36 additions and 33 deletions
|
@ -80,38 +80,18 @@
|
|||
environment.systemPackages = with pkgs; [
|
||||
alacritty
|
||||
alsa-utils
|
||||
# bash
|
||||
bat
|
||||
brightnessctl
|
||||
cava
|
||||
# devenv
|
||||
# dotnetCorePackages.sdk_9_0
|
||||
# eza
|
||||
gcc
|
||||
glib
|
||||
glibc
|
||||
# greetd.tuigreet
|
||||
# gobject-introspection
|
||||
# helix
|
||||
# hugo
|
||||
# jitsi
|
||||
# localsend
|
||||
nim
|
||||
nimble
|
||||
# obs-studio
|
||||
# pavucontrol
|
||||
playerctl
|
||||
poetry
|
||||
python311Full
|
||||
python311Packages.stdenv
|
||||
# python311Packages.tkinter
|
||||
# python311Packages.pygobject3
|
||||
# qbittorrent
|
||||
# stdenv.cc.cc.lib
|
||||
# slurp
|
||||
# spotify
|
||||
# thunderbird
|
||||
# tk
|
||||
udisks
|
||||
linuxPackages.v4l2loopback
|
||||
usbutils
|
||||
|
@ -137,9 +117,18 @@
|
|||
];
|
||||
|
||||
# Env settings
|
||||
environment.sessionVariables = {
|
||||
DOTNET_ROOT = "${pkgs.dotnet-sdk}";
|
||||
NIXOS_OZONE_WL = "1";
|
||||
environment = {
|
||||
sessionVariables = {
|
||||
NIXOS_OZONE_WL = "1";
|
||||
};
|
||||
|
||||
etc = {
|
||||
"1password/custom_allowed_browsers" = {
|
||||
text = ''
|
||||
firefox
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
qt = {
|
||||
|
|
|
@ -8,31 +8,30 @@
|
|||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ "kvm-amd" ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/4f28915c-4f09-40d8-9c83-cd141be42049";
|
||||
{ device = "/dev/disk/by-uuid/fd82187c-9b44-41b3-af0e-04a3b103289f";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/ABDA-E71D";
|
||||
{ device = "/dev/disk/by-uuid/3FCB-66B2";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/dbb604f4-ece2-404e-8aa8-936124e1aa08"; }
|
||||
];
|
||||
swapDevices = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp42s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlo1.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
settings = [
|
||||
{
|
||||
profile.name = "home_office";
|
||||
profile.name = "office";
|
||||
profile.outputs = [
|
||||
{
|
||||
criteria = "DP-1";
|
||||
|
@ -30,6 +30,16 @@
|
|||
];
|
||||
}
|
||||
|
||||
{
|
||||
profile.name = "home";
|
||||
profile.outputs = [
|
||||
{
|
||||
criteria = "HDMI-A-1";
|
||||
mode = "1920x1080";
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
{
|
||||
profile.name = "laptop";
|
||||
profile.outputs = [
|
||||
|
|
0
labwc/environment
Executable file → Normal file
0
labwc/environment
Executable file → Normal file
0
labwc/menu.xml
Executable file → Normal file
0
labwc/menu.xml
Executable file → Normal file
0
labwc/rc.xml
Executable file → Normal file
0
labwc/rc.xml
Executable file → Normal file
0
scripts/mediaplayer.py
Executable file → Normal file
0
scripts/mediaplayer.py
Executable file → Normal file
0
scripts/toggle_bluetooth
Executable file → Normal file
0
scripts/toggle_bluetooth
Executable file → Normal file
0
scripts/toggle_wifi
Executable file → Normal file
0
scripts/toggle_wifi
Executable file → Normal file
0
scripts/wittr.sh
Executable file → Normal file
0
scripts/wittr.sh
Executable file → Normal file
0
scripts/workspaces
Executable file → Normal file
0
scripts/workspaces
Executable file → Normal file
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
networking = {
|
||||
|
||||
hostName = "valanixos"; # Define your hostname.
|
||||
hostName = "valaptop"; # Define your hostname.
|
||||
|
||||
# Enables wireless support via wpa_supplicant.
|
||||
# wireless.enable = true;
|
||||
|
|
|
@ -2,6 +2,12 @@
|
|||
|
||||
{
|
||||
programs = {
|
||||
|
||||
_1password-gui = {
|
||||
enable = true;
|
||||
polkitPolicyOwners = [ "aethrvmn" ];
|
||||
};
|
||||
|
||||
firefox.enable = true;
|
||||
|
||||
file-roller.enable = true;
|
||||
|
|
|
@ -21,7 +21,6 @@
|
|||
home.sessionVariables.GTK_THEME = "Adwaita-dark";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
_1password-gui
|
||||
atuin
|
||||
bemenu
|
||||
btop
|
||||
|
|
0
wallpapers/bluemana.png
Executable file → Normal file
0
wallpapers/bluemana.png
Executable file → Normal file
Before Width: | Height: | Size: 3.5 MiB After Width: | Height: | Size: 3.5 MiB |
0
wallpapers/hobbits.jpg
Executable file → Normal file
0
wallpapers/hobbits.jpg
Executable file → Normal file
Before Width: | Height: | Size: 399 KiB After Width: | Height: | Size: 399 KiB |
Loading…
Reference in a new issue