Compare commits

..

No commits in common. "3fb788426ea83f5a15d58f7e55ac2af9ef141725" and "772518df4f93f26b8d20b44c13465fa352ef5353" have entirely different histories.

8 changed files with 10 additions and 32 deletions

View file

@ -119,7 +119,6 @@
./modules/waydroid.nix ./modules/waydroid.nix
./modules/packages.nix ./modules/packages.nix
./modules/aagl.nix ./modules/aagl.nix
./modules/virtualisation.nix
inputs.aagl.nixosModules.default inputs.aagl.nixosModules.default
inputs.lanzaboote.nixosModules.lanzaboote inputs.lanzaboote.nixosModules.lanzaboote
inputs.musnix.nixosModules.musnix inputs.musnix.nixosModules.musnix

View file

@ -12,24 +12,14 @@
# Monitor config for home desk layout # Monitor config for home desk layout
monitor = [ monitor = [
"eDP-2, 2560x1600@165, 0x0, auto" # main laptop monitor "eDP-2, 2560x1600@165, 0x0, auto" # main laptop monitor
"desc:Lenovo Group Limited LEN G24-10 U5B4ZAM2, 1920x1080@119.98, -960x-1080, auto" # left external monitor "desc:Lenovo Group Limited LEN G24-10 U5B4KL78, 1920x1080@119.98, -960x-1080, auto" # left external monitor
"desc:Lenovo Group Limited LEN G24-10 U5B4KL78, 1920x1080@119.98, 960x-1080, auto" # right external monitor "desc:Lenovo Group Limited LEN G24-10 U5B4ZAM2, 1920x1080@119.98, 960x-1080, auto" # right external monitor
]; ];
workspace = [ workspace = [
"name:comms, monitor:desc:Lenovo Group Limited LEN G24-10 U5B4ZAM2, default:true, persistent:true" "name:comms, monitor:desc:Lenovo Group Limited LEN G24-10 U5B4KL78, default:true, persistent:true"
"name:bg_noise, monitor:desc:Lenovo Group Limited LEN G24-10 U5B4KL78, default:true, persistent:true" "name:bg_noise, monitor:desc:Lenovo Group Limited LEN G24-10 U5B4ZAM2, default:true, persistent:true"
"name:main, monitor:eDP-2, default:true, persistent:true" "name:main, monitor:eDP-2, default:true, persistent:true"
]; ];
windowrulev2 = [
"keepaspectratio,class:^(floorp)$,title:^(Picture-in-Picture)$"
"noborder,class:^(floorp)$,title:^(Picture-in-Picture)$"
#"fakefullscreen,class:^(floorp)$,title:^(Floorp)$"
#"fakefullscreen,class:^(floorp)$,title:^(Picture-in-Picture)$"
"pin,class:^(floorp)$,title:^(Floorp)$"
"pin,class:^(floorp)$,title:^(Picture-in-Picture)$"
"float,class:^(floorp)$,title:^(Floorp)$"
"float,class:^(floorp)$,title:^(Picture-in-Picture)$"
];
# Define SUPER key as mod key # Define SUPER key as mod key
"$mod" = "SUPER"; "$mod" = "SUPER";
@ -40,7 +30,7 @@
follow_mouse = 1; follow_mouse = 1;
mouse_refocus = false; mouse_refocus = false;
touchpad = { touchpad = {
disable_while_typing = false; disable_while_typing = true;
}; };
}; };
gestures = { gestures = {

View file

@ -9,11 +9,8 @@
name = "base16"; name = "base16";
}; };
statusline.lualine.enable = true; # statusline statusline.lualine.enable = true;
telescope.enable = true; # fuzzy finder telescope.enable = true;
filetree.neo-tree.enable = true; # filetree
binds.cheatsheet.enable = true; # telescope-searchable cheatsheet
binds.hardtime-nvim.enable = true; # stops you using arrow keys for navigation and recommends vim motions
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;

View file

@ -15,6 +15,7 @@
telegram-desktop # Telegram messenger client telegram-desktop # Telegram messenger client
pavucontrol # Useful audio control GUI pavucontrol # Useful audio control GUI
stable.prismlauncher # Minecraft launcher stable.prismlauncher # Minecraft launcher
virt-manager # QEMU manager
bat # cat but with syntax highlighting bat # cat but with syntax highlighting
bc # terminal calculator bc # terminal calculator
wget # download files wget # download files

View file

@ -34,8 +34,6 @@
networking.hostName = "gabbielaptop"; # Define your hostname. networking.hostName = "gabbielaptop"; # Define your hostname.
programs.dconf.enable = true; # required for some apps that are just github code i compile myself instead of using a package
hardware.graphics = { hardware.graphics = {
enable = true; enable = true;
enable32Bit = true; enable32Bit = true;
@ -134,7 +132,6 @@
"wheel" "wheel"
"dialout" "dialout"
"audio" "audio"
"libvirtd"
]; ];
shell = pkgs.fish; shell = pkgs.fish;
}; };

View file

@ -1,4 +1,4 @@
{ ... }: { config, ... }:
{ {
programs.honkers-railway-launcher.enable = true; programs.honkers-railway-launcher.enable = true;
} }

View file

@ -15,6 +15,6 @@
pciutils pciutils
dmidecode dmidecode
nixd nixd
adwaita-icon-theme qemu
]; ];
} }

View file

@ -1,6 +0,0 @@
{...}:{
virtualisation.libvirtd = {
enable = true;
};
programs.virt-manager.enable = true;
}