Compare commits
3 commits
5eb8607fe0
...
048f5c58b1
Author | SHA1 | Date | |
---|---|---|---|
Serĉanto de Scio | 048f5c58b1 | ||
Serĉanto de Scio | 0f69e8fa60 | ||
Serĉanto de Scio | 9cbce61887 |
|
@ -47,6 +47,16 @@
|
||||||
true; # A daemon for delivering ACPI events to userspace programs
|
true; # A daemon for delivering ACPI events to userspace programs
|
||||||
blueman.enable = true; # GTK-based Bluetooth Manager
|
blueman.enable = true; # GTK-based Bluetooth Manager
|
||||||
devmon.enable = true; # Enable external device automounting.`
|
devmon.enable = true; # Enable external device automounting.`
|
||||||
|
displayManager = {
|
||||||
|
defaultSession = "pantheon"; # Set GNOME as the default session
|
||||||
|
};
|
||||||
|
libinput = {
|
||||||
|
enable = true; # Enable touchpad support.
|
||||||
|
touchpad = {
|
||||||
|
tapping = true;
|
||||||
|
tappingButtonMap = "lrm"; # Set the touchpad button mappeing
|
||||||
|
};
|
||||||
|
};
|
||||||
udev.packages = [
|
udev.packages = [
|
||||||
pkgs.android-udev-rules # Android udev rules list
|
pkgs.android-udev-rules # Android udev rules list
|
||||||
];
|
];
|
||||||
|
@ -64,17 +74,9 @@
|
||||||
pantheon.enable = true; # Enable Pantheon desktop environment
|
pantheon.enable = true; # Enable Pantheon desktop environment
|
||||||
};
|
};
|
||||||
displayManager = {
|
displayManager = {
|
||||||
defaultSession = "pantheon"; # Set GNOME as the default session
|
|
||||||
gdm.enable = false; # Enable the GNOME display manager
|
gdm.enable = false; # Enable the GNOME display manager
|
||||||
lightdm.greeters.pantheon.enable = true;
|
lightdm.greeters.pantheon.enable = true;
|
||||||
};
|
};
|
||||||
libinput = {
|
|
||||||
enable = true; # Enable touchpad support.
|
|
||||||
touchpad = {
|
|
||||||
tapping = true;
|
|
||||||
tappingButtonMap = "lrm"; # Set the touchpad button mappeing
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
pipewire = {
|
pipewire = {
|
||||||
|
|
|
@ -25,12 +25,10 @@
|
||||||
nerdtree-git-plugin # Plugin for nerdtree showing git status
|
nerdtree-git-plugin # Plugin for nerdtree showing git status
|
||||||
nvim-treesitter # configurations and abstraction layer for Neovim.
|
nvim-treesitter # configurations and abstraction layer for Neovim.
|
||||||
onedarkpro-nvim # Dark and light themes for Neovim
|
onedarkpro-nvim # Dark and light themes for Neovim
|
||||||
#statix # Lints and suggestions for the nix programming language
|
|
||||||
supertab # Allows you to use <Tab> for all your insert completion
|
supertab # Allows you to use <Tab> for all your insert completion
|
||||||
syntastic # Syntax checking hacks
|
syntastic # Syntax checking hacks
|
||||||
vim-terraform # tab completion, syntax highlighting, indentation
|
vim-terraform # tab completion, syntax highlighting, indentation
|
||||||
vim-terraform-completion
|
vim-terraform-completion
|
||||||
vim-addon-nix # Scripts assisting writing .nix files
|
|
||||||
vim-cue # Cue filetype plugin for Vim
|
vim-cue # Cue filetype plugin for Vim
|
||||||
vim-lastplace
|
vim-lastplace
|
||||||
vim-markdown-toc # Generate table of contents for Markdown files
|
vim-markdown-toc # Generate table of contents for Markdown files
|
||||||
|
|
|
@ -20,8 +20,6 @@
|
||||||
dbpassFile = "/run/keys/nextcloud-dbpass"; # Where to find the database password
|
dbpassFile = "/run/keys/nextcloud-dbpass"; # Where to find the database password
|
||||||
adminpassFile = "/run/keys/nextcloud-admin"; # Where to find the admin password
|
adminpassFile = "/run/keys/nextcloud-admin"; # Where to find the admin password
|
||||||
adminuser = "root"; # Set the admin user name
|
adminuser = "root"; # Set the admin user name
|
||||||
overwriteProtocol = "https"; # Force Nextcloud to always use HTTPS
|
|
||||||
defaultPhoneRegion = "AU"; # Country code for automatic phone-number detection
|
|
||||||
};
|
};
|
||||||
autoUpdateApps = {
|
autoUpdateApps = {
|
||||||
enable = true; # Run regular auto update of all apps installed
|
enable = true; # Run regular auto update of all apps installed
|
||||||
|
@ -33,6 +31,10 @@
|
||||||
};
|
};
|
||||||
extraAppsEnable = true;
|
extraAppsEnable = true;
|
||||||
appstoreEnable = true;
|
appstoreEnable = true;
|
||||||
|
settings = {
|
||||||
|
default_phone_region = "AU"; # Country code for automatic phone-number detection
|
||||||
|
overwriteprotocol = "https"; # Force Nextcloud to always use HTTPS
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd = {
|
systemd = {
|
||||||
|
|
Loading…
Reference in a new issue