cleanup zsh config - change to unmutuble users

This commit is contained in:
2024-03-01 20:39:29 +01:00
parent 0c433e3bd0
commit ca59bf727c
3 changed files with 59 additions and 44 deletions

View File

@@ -14,18 +14,6 @@
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
environment.systemPackages = with pkgs; [
#(callPackage ./pkgs/sddm-sugar-dark-theme.nix { })
git
neovim
wget
curl
alacritty
dmenu
];
networking.hostName = "eliasLaptop"; # Define your hostname. networking.hostName = "eliasLaptop"; # Define your hostname.
# Pick only one of the below networking options. # Pick only one of the below networking options.
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. #networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
@@ -34,10 +22,6 @@
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
console = { console = {
@@ -45,23 +29,12 @@
useXkbConfig = true; # use xkb.options in tty. useXkbConfig = true; # use xkb.options in tty.
}; };
# Enable the X11 windowing system.
#services.xserver = {
# enable = true;
#displayManager = {
# sddm = {
# enable = true;
# theme = "sddm-sugar-dark";
# };
# defaultSession = "none+xmonad";
#};
#};
services.xserver = { services.xserver = {
enable = true; enable = true;
displayManager = { displayManager = {
sddm = { sddm = {
enable = true; enable = true;
theme = "sddm-sugar-dark"; theme = "catppuccin-mocha";
}; };
defaultSession = "none+xmonad"; defaultSession = "none+xmonad";
}; };
@@ -73,6 +46,7 @@
}; };
}; };
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Configure keymap in X11 # Configure keymap in X11
# services.xserver.xkb.layout = "us"; # services.xserver.xkb.layout = "us";
@@ -95,25 +69,23 @@
isNormalUser = true; isNormalUser = true;
home = "/home/elias"; home = "/home/elias";
shell = pkgs.zsh; shell = pkgs.zsh;
extraGroups = [ "wheel" ]; # Enable sudo for the user. extraGroups = [ "wheel" "networkmanager" ];
hashedPassword = "$6$pdAJt1f0v7Zb13Ri$1WpKrErAp5JCb7eXs7EeeWYRMBLu5/WKDdMyGzJyYQDijG2NiywUXpAkl/8p1noxOOqYbb.MTw7JmTzhWGsT21"; hashedPassword = "$6$pdAJt1f0v7Zb13Ri$1WpKrErAp5JCb7eXs7EeeWYRMBLu5/WKDdMyGzJyYQDijG2NiywUXpAkl/8p1noxOOqYbb.MTw7JmTzhWGsT21";
}; };
}; };
environment.systemPackages = with pkgs; [
#(libsForQt5.callPackage home/programs/catppuccin-sddm.nix { })
git
neovim
wget
curl
alacritty
dmenu
];
programs.zsh.enable = true; programs.zsh.enable = true;
system.stateVersion = "23.11"; # Do not change!!!!
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
system.stateVersion = "23.11"; # Did you read the comment?
} }

View File

@@ -0,0 +1,43 @@
{ lib
, stdenv
, fetchFromGitHub
, sddm
, qtgraphicaleffects
, qtquickcontrols2
, qtsvg
}:
stdenv.mkDerivation rec {
pname = "catppuccin-sddm";
version = "unstable-2024-02-05";
src = fetchFromGitHub {
owner = "catppuccin";
repo = "sddm";
rev = "f3db13cbe8e99a4ee7379a4e766bc8a4c2c6c3dd";
hash = "sha256-0zoJOTFjQq3gm5i3xCRbyk781kB7BqcWWNrrIkWf2Xk=";
};
buildInputs = [
sddm
qtgraphicaleffects
qtquickcontrols2
qtsvg
];
dontWrapQtApps = true;
postInstall = ''
mkdir -p "$out/share/sddm/themes/"
mv src/* "$out/share/sddm/themes/."
'';
meta = {
description = "Soothing pastel theme for SDDM";
homepage = "https://github.com/catppuccin/sddm";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ einfischy ];
platforms = lib.platforms.linux;
};
}

View File

@@ -6,6 +6,6 @@
}; };
xsession.initExtra = '' xsession.initExtra = ''
${pkgs.feh}/bin/feh --bg-fill --no-fehbg "background_temp.jpeg" ${pkgs.feh}/bin/feh --bg-fill --no-fehbg "/etc/nixos/home/programs/background_temp.jpeg"
''; '';
} }