mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
figured out mount problems
This commit is contained in:
parent
72e2acdef1
commit
33ef4623a1
22
home.nix
22
home.nix
|
@ -110,7 +110,9 @@
|
||||||
initExtra = "eval \"$(direnv hook zsh)\"";
|
initExtra = "eval \"$(direnv hook zsh)\"";
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
my-update = "sudo nixos-rebuild switch";
|
my-apply = "sudo nixos-rebuild boot";
|
||||||
|
my-switch = "sudo nixos-rebuild switch";
|
||||||
|
my-update = "sudo nixos-rebuild boot --upgrade";
|
||||||
my-fmt = "alejandra .";
|
my-fmt = "alejandra .";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -165,10 +167,11 @@
|
||||||
"editor.fontFamily" = "'Fira Code', 'Droid Sans Mono', 'monospace', monospace";
|
"editor.fontFamily" = "'Fira Code', 'Droid Sans Mono', 'monospace', monospace";
|
||||||
"editor.fontLigatures" = true;
|
"editor.fontLigatures" = true;
|
||||||
"editor.formatOnSave" = true;
|
"editor.formatOnSave" = true;
|
||||||
"editor.formatOnSaveMode" = "modificationsIfAvailiable";
|
"editor.formatOnSaveMode" = "modificationsIfAvailable";
|
||||||
"editor.minimap.autohide" = true;
|
"editor.minimap.autohide" = true;
|
||||||
"diffEditor.diffAlgorithm" = "advanced";
|
"diffEditor.diffAlgorithm" = "advanced";
|
||||||
"explorer.excludeGitIgnore" = true;
|
"explorer.excludeGitIgnore" = true;
|
||||||
|
"workbench.startupEditor" = "readme";
|
||||||
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
"markdown.extension.tableFormatter.normalizeIndentation" = true;
|
||||||
"markdown.extension.toc.orderedList" = false;
|
"markdown.extension.toc.orderedList" = false;
|
||||||
"telemetry.telemetryLevel" = "off";
|
"telemetry.telemetryLevel" = "off";
|
||||||
|
@ -205,14 +208,13 @@
|
||||||
|
|
||||||
exa = {
|
exa = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# not availiable at 22.11
|
git = true;
|
||||||
# git = true;
|
icons = true;
|
||||||
# icons = true;
|
enableAliases = true;
|
||||||
# enableAliases = true;
|
extraOptions = [
|
||||||
# extraOptions = [
|
"--group-directories-first"
|
||||||
# "--group-directories-first"
|
"--header"
|
||||||
# "--header"
|
];
|
||||||
# ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
# checked https://rycee.gitlab.io/home-manager/options.html until "programs.jq"
|
# checked https://rycee.gitlab.io/home-manager/options.html until "programs.jq"
|
||||||
|
|
17
kde.nix
17
kde.nix
|
@ -6,11 +6,25 @@
|
||||||
services = {
|
services = {
|
||||||
# Enable the KDE Plasma Desktop Environment.
|
# Enable the KDE Plasma Desktop Environment.
|
||||||
xserver = {
|
xserver = {
|
||||||
displayManager.sddm.enable = true;
|
|
||||||
desktopManager.plasma5.enable = true;
|
desktopManager.plasma5.enable = true;
|
||||||
|
|
||||||
|
displayManager = {
|
||||||
|
sddm.enable = true;
|
||||||
|
defaultSession = "plasmawayland";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
|
||||||
|
elisa
|
||||||
|
gwenview
|
||||||
|
okular
|
||||||
|
khelpcenter
|
||||||
|
];
|
||||||
|
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
programs.partition-manager.enable = true;
|
||||||
|
|
||||||
home-manager.users.vinzenz = {
|
home-manager.users.vinzenz = {
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
@ -20,6 +34,7 @@
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
services.kdeconnect = {
|
services.kdeconnect = {
|
||||||
enable = true;
|
enable = true;
|
||||||
indicator = true;
|
indicator = true;
|
||||||
|
|
|
@ -29,17 +29,22 @@
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
# "/sdmanjaro" = {
|
"/mnt/manjaro" = {
|
||||||
# device = "/dev/disk/by-uuid/b6b4c0b8-4b16-4a72-a18d-d7923a2bb532";
|
device = "/dev/disk/by-uuid/b6b4c0b8-4b16-4a72-a18d-d7923a2bb532";
|
||||||
# fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
# options = ["subvol=@"];
|
options = ["subvol=@"];
|
||||||
# };
|
};
|
||||||
|
|
||||||
# "/sdmanjaro/home" = {
|
"/mnt/manjaro/home" = {
|
||||||
# device = "/dev/disk/by-uuid/b6b4c0b8-4b16-4a72-a18d-d7923a2bb532";
|
device = "/dev/disk/by-uuid/b6b4c0b8-4b16-4a72-a18d-d7923a2bb532";
|
||||||
# fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
# options = ["subvol=home"];
|
options = ["subvol=@home"];
|
||||||
# };
|
};
|
||||||
|
|
||||||
|
"/mnt/ssd2" = {
|
||||||
|
device = "/dev/disk/by-uuid/6b2a647d-c68e-4c07-85bf-c9bfc5db7e8a";
|
||||||
|
fsType = "ext4";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [];
|
swapDevices = [];
|
||||||
|
|
Loading…
Reference in a new issue