I am yashraj (snaps a finger)

  • 13 Posts
  • 37 Comments
Joined 1 year ago
cake
Cake day: March 25th, 2024

help-circle
rss




  • So I am importing in home manager file and the syntax and building is fine, the file is also being created in my ~/requested folder.

    But I think there has been a misunderstanding in my concept of how this package is being installed and where it will get its colors from, so this flake package astal takes colors from where it is built right? and inside there will be created a scss folder which will have the themes/astel.css file, but in our setup we will only create a file in *user’s home/.config/astal directory, but then how will the app use that file? I am getting confuse here, I tried to change the astel.scss file lines to @import "~/.config/astal/scss/themes/astel.scss"; but no cigar. I am missing a piece here, can you please help me?

    Sry I am asking a little too much help now.

    Please consider these sources:

    github.com/mobsenpai/hana

    github.com/mobsenpai/aoi (just changed the name)

    https://aylur.github.io/astal/guide/getting-started/nix


  • I was always curious about this linux thing, from when I was in 7th grade, I only knew Kali linux then, and I thought one could hack anything if you had kali linux :), But I seriously started using linux in 10th grade, fell into the rabbit hole of ricing, and to this day still cant get over it although it has become more stable and I know what I am doing.



  • @balsoft Help wanted my G!, I am stuck here I created this flake for my astal widget config: https://github.com/mobsenpai/astal.git

    And I have this flake for my main nixos config: https://github.com/hana.git

    I can try to import it now, but perhaps it seems that there is some error here. I try building this astal config using nix build (just to try to test it) and it creates a result folder inside the astal folder, where i have its flake and configs, see the astal repo, those are the contents of the folder. But there is no check.scss file gets created in the scss/theme/ folder. I haven’t yet tried to import it into my nixos system, for now, didn’t get the time, but will update you on that, but I feel something if not a lot of things are not good here.










  • So does it mean passing --cmd Hyprland > /dev/null to Tuigreet? If so then that wouldn’t work with my setup, as I use sessions instead of cmd. Here is how I have it in nixos

        services.greetd = {
          enable = true;
          settings = {
            default_session = {
              user = "greeter";
              command = ''
                ${getExe' pkgs.unstable.greetd.tuigreet "tuigreet"} \
                --time \
                --sessions ${cfg.sessionDirs} \
                --remember \
                --remember-session
              '';
            };
          };
        };
    
    

    The sessionDirs is this

    modules.services.greetd.sessionDirs = ["${hyprlandPackage}/share/wayland-sessions"];
    

    This is a link to my dotfiles where I have it: