Backup
This commit is contained in:
parent
811660e30a
commit
01e4fe7095
22 changed files with 102 additions and 122 deletions
modules
|
@ -3,7 +3,6 @@
|
|||
./git
|
||||
./shells
|
||||
# ./wakatime
|
||||
./xmonad
|
||||
./rofi
|
||||
# ./xmodmap
|
||||
|
||||
|
@ -17,7 +16,7 @@
|
|||
./locale.nix
|
||||
# ./memes.nix
|
||||
./alacritty.nix
|
||||
./postgres.nix
|
||||
# ./postgres.nix
|
||||
./neovim.nix
|
||||
./tmux.nix
|
||||
./kmonad.nix
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{ pkgs, ... }: {
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
# time.timeZone = "Europe/Bucharest";
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
@ -8,6 +8,10 @@
|
|||
# ibus.engines = with pkgs.ibus-engines; [ /* any engine you want, for example */ anthy ];
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.source-code-pro
|
||||
];
|
||||
|
||||
console = {
|
||||
keyMap = "us";
|
||||
font = "SourceCodePro";
|
||||
|
|
|
@ -32,9 +32,6 @@ let
|
|||
in
|
||||
{
|
||||
home-manager.users.adrielus.programs = {
|
||||
# Add tmux-navigator plugin to neovim
|
||||
# neovim.extraPackages = [ pkgs.vimPlugins.vim-tmux-navigator ];
|
||||
|
||||
tmux = {
|
||||
enable = true;
|
||||
|
||||
|
|
|
@ -1,29 +0,0 @@
|
|||
{ pkgs, ... }: {
|
||||
home-manager.users.adrielus = {
|
||||
# xsession.windowManager.xmonad = {
|
||||
# enable = true;
|
||||
# enableContribAndExtras = true;
|
||||
# config = ./Main.hs;
|
||||
# };
|
||||
|
||||
home.packages = with pkgs; [ xwallpaper ];
|
||||
|
||||
# Tell KDE to use xmonad
|
||||
# home.file.".config/plasma-workspace/env/set_window_manager.sh".text =
|
||||
# "export KDEWM=/home/adrielus/.nix-profile/bin/xmonad";
|
||||
|
||||
services.picom = {
|
||||
enable = false;
|
||||
blur = true;
|
||||
shadow = false;
|
||||
extraOptions = ''
|
||||
blur:
|
||||
{
|
||||
method = "gaussian";
|
||||
size = 10;
|
||||
deviation = 5.0;
|
||||
};
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
|
@ -85,8 +85,6 @@ in
|
|||
};
|
||||
|
||||
opacity = transparency;
|
||||
|
||||
gtk_theme_variant = v "light" "dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# https://www.codyhiar.com/blog/how-to-set-desktop-wallpaper-on-nixos/
|
||||
{ pkgs, config, ... }: {
|
||||
home-manager.users.adrielus = {
|
||||
home.packages = with pkgs; [ xwallpaper ];
|
||||
xdg.configFile."wallpaper".source = pkgs.myThemes.current.wallpaper;
|
||||
xsession = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue