some upd
This commit is contained in:
+21
-38
@@ -2,51 +2,34 @@
|
||||
|
||||
{
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
home.packages = with pkgs; [
|
||||
# gnomeExtensions.paperwm
|
||||
nixfmt-classic
|
||||
];
|
||||
home.packages = with pkgs; [ nixfmt-classic ];
|
||||
|
||||
imports = [
|
||||
./modules/zsh/zsh.nix
|
||||
./modules/kitty.nix
|
||||
./modules/git.nix
|
||||
./modules/programs.nix
|
||||
];
|
||||
|
||||
# dconf = {
|
||||
# enable = true;
|
||||
# settings = {
|
||||
# "org/gnome/shell" = {
|
||||
# enabled-extensions = [
|
||||
# "paperwm@paperwm.github.com"
|
||||
# ];
|
||||
# };
|
||||
# "org/gnome/desktop/interface".show-battery-percentage = true;
|
||||
# };
|
||||
# };
|
||||
|
||||
home.pointerCursor =
|
||||
let
|
||||
getFrom = url: hash: name: {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
name = name;
|
||||
size = 48;
|
||||
package =
|
||||
pkgs.runCommand "moveUp" {} ''
|
||||
mkdir -p $out/share/icons
|
||||
ln -s ${pkgs.fetchzip {
|
||||
url = url;
|
||||
hash = hash;
|
||||
}} $out/share/icons/${name}
|
||||
'';
|
||||
};
|
||||
in
|
||||
getFrom
|
||||
"https://github.com/ful1e5/fuchsia-cursor/releases/download/v2.0.0/Fuchsia-Pop.tar.gz"
|
||||
"sha256-BvVE9qupMjw7JRqFUj1J0a4ys6kc9fOLBPx2bGaapTk="
|
||||
"Fuchsia-Pop";
|
||||
|
||||
home.pointerCursor = let
|
||||
getFrom = url: hash: name: {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
name = name;
|
||||
size = 48;
|
||||
package = pkgs.runCommand "moveUp" { } ''
|
||||
mkdir -p $out/share/icons
|
||||
ln -s ${
|
||||
pkgs.fetchzip {
|
||||
url = url;
|
||||
hash = hash;
|
||||
}
|
||||
} $out/share/icons/${name}
|
||||
'';
|
||||
};
|
||||
in getFrom
|
||||
"https://github.com/ful1e5/fuchsia-cursor/releases/download/v2.0.0/Fuchsia-Pop.tar.gz"
|
||||
"sha256-BvVE9qupMjw7JRqFUj1J0a4ys6kc9fOLBPx2bGaapTk=" "Fuchsia-Pop";
|
||||
|
||||
home.username = "krosh";
|
||||
home.homeDirectory = "/home/krosh";
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
||||
userName = "Krosh";
|
||||
userEmail = "gudovdo@my.msu.ru";
|
||||
settings.user = {
|
||||
name = "Krosh";
|
||||
email = "gudovdo@my.msu.ru";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [ hyprland ];
|
||||
|
||||
home.file.".config/hypr/hyprland.conf".text = ''
|
||||
# Minimal Hyprland config
|
||||
|
||||
# General settings
|
||||
general {
|
||||
dpi=96
|
||||
}
|
||||
|
||||
# Example monitor line — replace with your output name and resolution
|
||||
monitor= eDP-1, 1920x1080@60, 0, 0, 1
|
||||
|
||||
# Basic keybindings (SUPER is the meta/windows key)
|
||||
bind=SUPER+ENTER, exec, alacritty
|
||||
bind=SUPER+D, exec, dmenu_run
|
||||
bind=SUPER+Q, killactive
|
||||
|
||||
# Simple floating example (adjust class/title as needed)
|
||||
windowrulev2 = float,class: Pavucontrol
|
||||
|
||||
# Add any startup commands here (uncomment and edit)
|
||||
# exec = seatd,enabled
|
||||
'';
|
||||
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{ }
|
||||
Reference in New Issue
Block a user