Compare commits

...

2 commits

Author SHA1 Message Date
joygnu f855316333 update 2024-08-04 00:37:45 +02:00
joygnu 27bbdb9f48 shorter flake 2024-08-04 00:37:19 +02:00
5 changed files with 31 additions and 29 deletions

View file

@ -142,11 +142,11 @@
},
"locked": {
"dir": "pkgs/firefox-addons",
"lastModified": 1722571415,
"narHash": "sha256-ncnnr/wolRtH2d6fC00ACGA5QQHh4sG+wZSlssPB0eA=",
"lastModified": 1722657793,
"narHash": "sha256-Hdyl0WsFophjvMdNqEcDu3pPKaJ6vScFUGYrgaUroQg=",
"owner": "rycee",
"repo": "nur-expressions",
"rev": "f262cf023d907df83a5487a0f981a319d44e1993",
"rev": "34dd6e6ad245c3f16b0f40cf11664ef41cf47460",
"type": "gitlab"
},
"original": {
@ -227,11 +227,11 @@
]
},
"locked": {
"lastModified": 1722462338,
"narHash": "sha256-ss0G8t8RJVDewA3MyqgAlV951cWRK6EtVhVKEZ7J5LU=",
"lastModified": 1722630065,
"narHash": "sha256-QfM/9BMRkCmgWzrPDK+KbgJOUlSJnfX4OvsUupEUZvA=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "6e090576c4824b16e8759ebca3958c5b09659ee8",
"rev": "afc892db74d65042031a093adb6010c4c3378422",
"type": "github"
},
"original": {

View file

@ -6,7 +6,6 @@
ags.url = "github:Aylur/ags";
stylix.url = "github:danth/stylix";
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
@ -18,21 +17,19 @@
};
};
outputs = { nixpkgs, home-manager, ... }@inputs: {
nixosConfigurations.desktop = nixpkgs.lib.nixosSystem {
outputs = { nixpkgs, home-manager, stylix, ... }@inputs: let
systemConfig = { modules }: nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
./hosts/desktop
inputs.stylix.nixosModules.stylix
];
modules = modules ++ [ stylix.nixosModules.stylix ];
};
in {
nixosConfigurations = {
desktop = systemConfig {
modules = [ ./hosts/desktop ];
};
laptop = systemConfig {
modules = [ ./hosts/laptop ];
};
nixosConfigurations.laptop = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
./hosts/laptop
inputs.stylix.nixosModules.stylix
];
};
};
}

View file

@ -51,6 +51,10 @@
"float,title:^(Bluetooth)(.*)$"
];
gestures = {
workspace_swipe = true;
};
bind = [
# launch Apps

View file

@ -6,7 +6,7 @@ vm_state=$(virsh --connect qemu:///system domstate "$VM_NAME")
if [ "$vm_state" != "running" ]; then
virsh --connect qemu:///system start "$VM_NAME"
sleep 5
sleep 10
fi
# Get the IP address of the VM

View file

@ -12,6 +12,7 @@
display-window = "";
display-combi = "";
show-icons = true;
terminal = "alacritty";
};
};
}