Compare commits
4 Commits
4c5a461712
...
f5e5b30f76
Author | SHA1 | Date | |
---|---|---|---|
f5e5b30f76
|
|||
419d56cf58
|
|||
d53f48e628
|
|||
a73f488069
|
@ -10,6 +10,7 @@
|
|||||||
];
|
];
|
||||||
boot = {
|
boot = {
|
||||||
# kernelPackages = pkgs.linuxPackages_latest;
|
# kernelPackages = pkgs.linuxPackages_latest;
|
||||||
|
consoleLogLevel = 0;
|
||||||
kernelPackages = pkgs.linuxPackages_cachyos;
|
kernelPackages = pkgs.linuxPackages_cachyos;
|
||||||
kernelModules = ["kvm-amd"];
|
kernelModules = ["kvm-amd"];
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
@ -30,11 +31,11 @@
|
|||||||
"iommu.passthrough=0"
|
"iommu.passthrough=0"
|
||||||
"iommu.strict=1"
|
"iommu.strict=1"
|
||||||
"iommu=force"
|
"iommu=force"
|
||||||
"lockdown=confidentiality"
|
# "lockdown=confidentiality"
|
||||||
"module.sig_enforce=1"
|
# "module.sig_enforce=1"
|
||||||
"page_alloc.shuffle=1"
|
"page_alloc.shuffle=1"
|
||||||
"reg_file_data_sampling=on"
|
# "reg_file_data_sampling=on"
|
||||||
"spec_rstack_overflow=safe-ret"
|
# "spec_rstack_overflow=safe-ret"
|
||||||
"vsyscall=none"
|
"vsyscall=none"
|
||||||
];
|
];
|
||||||
initrd = {
|
initrd = {
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
scx = {
|
scx = {
|
||||||
enable = false;
|
enable = true;
|
||||||
scheduler = "scx_flash";
|
scheduler = "scx_flash";
|
||||||
};
|
};
|
||||||
logind = {
|
logind = {
|
||||||
|
@ -5,6 +5,10 @@
|
|||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
enable = true;
|
enable = true;
|
||||||
uninstallUnmanaged = true;
|
uninstallUnmanaged = true;
|
||||||
|
update.auto = {
|
||||||
|
enable = true;
|
||||||
|
onCalendar = "weekly";
|
||||||
|
};
|
||||||
remotes = [
|
remotes = [
|
||||||
{
|
{
|
||||||
name = "flathub";
|
name = "flathub";
|
||||||
@ -30,7 +34,7 @@
|
|||||||
"com.usebottles.bottles"
|
"com.usebottles.bottles"
|
||||||
"de.capypara.FieldMonitor"
|
"de.capypara.FieldMonitor"
|
||||||
"de.haeckerfelix.Fragments"
|
"de.haeckerfelix.Fragments"
|
||||||
"org.qbittorrent.qBittorrent"
|
"org.nicotine_plus.Nicotine"
|
||||||
|
|
||||||
# chatting
|
# chatting
|
||||||
"im.riot.Riot"
|
"im.riot.Riot"
|
||||||
@ -41,13 +45,12 @@
|
|||||||
"io.github.kukuruzka165.materialgram"
|
"io.github.kukuruzka165.materialgram"
|
||||||
|
|
||||||
# media
|
# media
|
||||||
"io.bassi.Amberol"
|
|
||||||
"io.freetubeapp.FreeTube"
|
"io.freetubeapp.FreeTube"
|
||||||
# "io.mpv.Mpv"
|
#music
|
||||||
#"io.github.celluloid_player.Celluloid"
|
"io.bassi.Amberol"
|
||||||
|
"org.atheme.audacious"
|
||||||
|
|
||||||
# gaming
|
# gaming
|
||||||
#"com.github._0negal.Viper"
|
|
||||||
"com.heroicgameslauncher.hgl"
|
"com.heroicgameslauncher.hgl"
|
||||||
"com.valvesoftware.Steam"
|
"com.valvesoftware.Steam"
|
||||||
"net.lutris.Lutris"
|
"net.lutris.Lutris"
|
||||||
|
@ -266,14 +266,14 @@ in {
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
main = {
|
main = {
|
||||||
terminal = "${terminal} -e";
|
terminal = terminal + " -e";
|
||||||
fields = "filename,name,generic,keywords,categories,exec";
|
fields = "filename,name,generic,keywords,categories,exec";
|
||||||
dpi-aware = false;
|
dpi-aware = true;
|
||||||
horizontal-pad = 4;
|
horizontal-pad = 12;
|
||||||
vertical-pad = 4;
|
vertical-pad = 12;
|
||||||
show-actions = true;
|
show-actions = true;
|
||||||
match-mode = "fuzzy";
|
match-mode = "fuzzy";
|
||||||
icon-theme = "${config.dconf.settings."org/gnome/desktop/interface".icon-theme}";
|
icon-theme = config.dconf.settings."org/gnome/desktop/interface".icon-theme;
|
||||||
};
|
};
|
||||||
border = mkDefault {
|
border = mkDefault {
|
||||||
width = 3;
|
width = 3;
|
||||||
|
@ -49,7 +49,7 @@ in {
|
|||||||
xdg-desktop-portal-gnome
|
xdg-desktop-portal-gnome
|
||||||
xdg-desktop-portal-gtk
|
xdg-desktop-portal-gtk
|
||||||
];
|
];
|
||||||
config.common = {
|
config.niri = {
|
||||||
default = ["gnome" "gtk"];
|
default = ["gnome" "gtk"];
|
||||||
"org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
|
"org.freedesktop.impl.portal.Secret" = ["gnome-keyring"];
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user