Compare commits
4 Commits
0af98663f7
...
740f7a5ca5
Author | SHA1 | Date | |
---|---|---|---|
740f7a5ca5 | |||
5f0e729d9f | |||
d14ba88542 | |||
a4ef9a9c63 |
@ -105,6 +105,9 @@
|
|||||||
services.nextcloud-client.startInBackground = true;
|
services.nextcloud-client.startInBackground = true;
|
||||||
services.network-manager-applet.enable = true;
|
services.network-manager-applet.enable = true;
|
||||||
|
|
||||||
|
services.syncthing.tray.enable = true;
|
||||||
|
services.syncthing.tray.command = "syncthingtray --wait"; # Wait for tray to become available
|
||||||
|
|
||||||
programs.chromium = {
|
programs.chromium = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = [
|
extensions = [
|
||||||
|
@ -155,4 +155,6 @@ with pkgs;
|
|||||||
|
|
||||||
nheko
|
nheko
|
||||||
conda
|
conda
|
||||||
|
|
||||||
|
pkg-config # Often needed to build something
|
||||||
]
|
]
|
||||||
|
@ -47,9 +47,11 @@ in
|
|||||||
];
|
];
|
||||||
xsession.enable = true; # Give gui programs access to sessionVariables
|
xsession.enable = true; # Give gui programs access to sessionVariables
|
||||||
# Prevent screen from going blank (check these settings with `xset q`)
|
# Prevent screen from going blank (check these settings with `xset q`)
|
||||||
|
# And disable bell sound (b)
|
||||||
xsession.initExtra = ''
|
xsession.initExtra = ''
|
||||||
${pkgs.xorg.xset}/bin/xset s off
|
${pkgs.xorg.xset}/bin/xset s off
|
||||||
${pkgs.xorg.xset}/bin/xset -dpms
|
${pkgs.xorg.xset}/bin/xset -dpms
|
||||||
|
${pkgs.xorg.xset}/bin/xset b off
|
||||||
'';
|
'';
|
||||||
xsession.windowManager.i3 = {
|
xsession.windowManager.i3 = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -33,8 +33,8 @@ in
|
|||||||
shellIntegration.enableFishIntegration = true;
|
shellIntegration.enableFishIntegration = true;
|
||||||
theme = "Catppuccin-Mocha";
|
theme = "Catppuccin-Mocha";
|
||||||
settings = {
|
settings = {
|
||||||
enable_audo_bell = false;
|
enable_audio_bell = false;
|
||||||
confirm_os_window_close = 0; # disabled
|
confirm_os_window_close = 0; # no ask on quit
|
||||||
};
|
};
|
||||||
font = {
|
font = {
|
||||||
package = pkgs.dejavu_fonts;
|
package = pkgs.dejavu_fonts;
|
||||||
|
@ -48,6 +48,7 @@
|
|||||||
# Bootloader
|
# Bootloader
|
||||||
modules.system.boot-efi.enable = true;
|
modules.system.boot-efi.enable = true;
|
||||||
|
|
||||||
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
boot.supportedFilesystems = [
|
boot.supportedFilesystems = [
|
||||||
"btrfs"
|
"btrfs"
|
||||||
"ntfs"
|
"ntfs"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user