diff --git a/alacritty/alacritty.nix b/alacritty/alacritty.nix deleted file mode 100644 index 1bf8562..0000000 --- a/alacritty/alacritty.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ ... }: -let - home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz"; -in -{ - imports = - [ # Include the results of the hardware scan. - (import "${home-manager}/nixos") - ]; - home-manager.users.ark.programs.alacritty = { - enable = true; - settings = { - window = { - padding = { - x = 4; - y = 4; - }; - }; - font = { - size = 14; - normal = { - family = "CozetteVector"; - style = "Medium"; - }; - bold = { - family = "CozetteVectorBold"; - style = "Medium"; - }; - italic = { - family = "CozetteVector"; - style = "Medium"; - }; - bold_italic = { - family = "CozetteVectorBold"; - style = "Medium"; - }; - }; - }; - }; -} diff --git a/firefox/firefox.nix b/firefox/firefox.nix deleted file mode 100644 index f13f7dc..0000000 --- a/firefox/firefox.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ pkgs, ... }: -let - home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz"; - arkenfox = builtins.fetchTarball "https://github.com/arkenfox/user.js/archive/master.tar.gz"; -in -{ - imports = - [ # Include the results of the hardware scan. - (import "${home-manager}/nixos") - ]; - nixpkgs.config.packageOverrides = pkgs: { - nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { - inherit pkgs; - }; - }; - home-manager.users.ark.programs.firefox = { - enable = true; - profiles.default = { - id = 0; - name = "default"; - isDefault = true; - search.force = true; - search.default = "LibRedirect"; - search.privateDefault = "LibRedirect"; - settings = { - "toolkit.legacyUserProfileCustomizations.stylesheets" = true; - "browser.toolbars.bookmarks.visibility" = "never"; - "signon.rememberSignons" = false; - }; - containersForce = true; - containers = { - "school" = { - id = 0; - color = "red"; - icon = "fruit"; - }; - }; - extensions = with pkgs.nur.repos.rycee.firefox-addons; [ - ublock-origin - bitwarden - libredirect - sidebery - stylus - firefox-color - tabliss - ]; - bookmarks = [ - { - name = "nixos"; - bookmarks = [ - { - name = "nixos packages"; - url = "https://search.nixos.org"; - } - { - name = "home manager wiki"; - url = "https://nix-community.github.io/home-manager"; - } - ]; - } - ]; - userChrome = builtins.readFile ./userChrome.css; - extraConfig = builtins.readFile "${arkenfox}/user.js"; - }; - }; -} diff --git a/hyprland/hyprland.nix b/hyprland/hyprland.nix deleted file mode 100644 index 469e2ef..0000000 --- a/hyprland/hyprland.nix +++ /dev/null @@ -1,70 +0,0 @@ -{ ... }: -let - home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz"; -in -{ - imports = - [ # Include the results of the hardware scan. - (import "${home-manager}/nixos") - ]; - home-manager.users.ark.programs.wpaperd = { - enable = true; - settings = { - default = { - path = "/etc/nixos/wallpapers/nix-black-4k.png"; - apply-shadow = true; - }; - }; - }; - home-manager.users.ark.wayland.windowManager.hyprland = { - enable = true; - xwayland = { - enable = true; - }; - settings = { - "$mod" = "SUPER"; - "$terminal" = "alacritty"; - bind = [ - "$mod, S, exec, wofi --show drun --allow-images" - "$mod, Q, exec, $terminal" - "$mod, M, exit," - "$mod, 1, workspace, 1" - "$mod, 2, workspace, 2" - "$mod, 3, workspace, 3" - "$mod, 4, workspace, 4" - "$mod, 5, workspace, 5" - "$mod, 6, workspace, 6" - "$mod, 7, workspace, 7" - "$mod, 8, workspace, 8" - "$mod, 9, workspace, 9" - "$mod, 0, workspace, 10" - "$mod SHIFT, 1, movetoworkspace, 1" - "$mod SHIFT, 2, movetoworkspace, 2" - "$mod SHIFT, 3, movetoworkspace, 3" - "$mod SHIFT, 4, movetoworkspace, 4" - "$mod SHIFT, 5, movetoworkspace, 5" - "$mod SHIFT, 6, movetoworkspace, 6" - "$mod SHIFT, 7, movetoworkspace, 7" - "$mod SHIFT, 8, movetoworkspace, 8" - "$mod SHIFT, 9, movetoworkspace, 9" - "$mod SHIFT, 0, movetoworkspace, 10" - ]; - bindm = [ - "$mod, mouse:272, movewindow" - "$mod, mouse:273, resizewindow" - ]; - exec-once = [ - "udiskie" - "wpaperd" - "dunst" - "lxqt-policykit-agent" - "nm-applet --indicator" - "waybar" - ]; - decoration = { - rounding = 0; - }; - }; - }; -} -