local changes
This commit is contained in:
parent
1871546290
commit
08bdc66b49
5 changed files with 42 additions and 32 deletions
|
@ -19,7 +19,7 @@ in {
|
|||
inputs.attic.packages.${pkgs.system}.attic
|
||||
inputs.comma.packages.${pkgs.system}.default
|
||||
inputs.webcord.packages.${pkgs.system}.default
|
||||
kdenlive
|
||||
kdenliv
|
||||
mattermost-desktop
|
||||
mullvad-vpn
|
||||
neofetch
|
||||
|
|
|
@ -23,6 +23,7 @@ in {
|
|||
"[python]" = { "editor.formatOnType" = true; };
|
||||
"rust-analyzer.checkOnSave.command" = "clippy";
|
||||
"debug.allowBreakpointsEverywhere" = true;
|
||||
"C_Cpp.clang_format_fallbackStyle" = "{ BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0}";
|
||||
# Don't index unecessary things
|
||||
"files.exclude" = {
|
||||
"**/.vscode" = true;
|
||||
|
|
|
@ -16,6 +16,10 @@
|
|||
resumeDevice = "/dev/nvme0n1p2";
|
||||
loader.systemd-boot.enable = lib.mkForce false;
|
||||
|
||||
kernel.sysctl = {
|
||||
"perf_event_paranoid" = 1;
|
||||
"kptr_restrict" = 0;
|
||||
};
|
||||
lanzaboote = {
|
||||
enable = true;
|
||||
configurationLimit = 5;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
_: {
|
||||
{pkgs, ...}: {
|
||||
# Custom dconf settings
|
||||
dconf.settings."org/gnome/desktop/input-sources" = {
|
||||
xkb-options = [ "caps:swapescape" ];
|
||||
|
@ -7,4 +7,9 @@ _: {
|
|||
programs.zsh.envExtra = ''
|
||||
source ~/.zshrc.secrets
|
||||
'';
|
||||
|
||||
home.packages = with pkgs; [
|
||||
libreoffice-fresh
|
||||
jetbrains.clion
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue